设为首页 加入收藏

TOP

LeetCode:Merge Sorted Array
2015-07-20 17:21:13 来源: 作者: 【 】 浏览:3
Tags:LeetCode Merge Sorted Array

Given two sorted integer arrays A and B, merge B into A as one sorted array.

Note:
You may assume that A has enough space (size that is greater or equal to m + n) to hold additional elements from B. The number of elements initialized in A and B are m andn respectively.

// https://oj.leetcode.com/problems/merge-sorted-array/
// Author : Chao Zeng
// Date   : 2015-2-2

class Solution {
public:
    void merge(int A[], int m, int B[], int n) {
        int newlength = m + n - 1;
        int length1 = m - 1;
        int length2 = n - 1;
        //两个数组末尾开始比较
        while(length1 >= 0 && length2 >= 0){
            if (A[length1] > B[length2]){
                A[newlength] = A[length1];
                length1--;
            }
            else{
                A[newlength] = B[length2];
                length2--;
            }
            newlength--;
        }
        //如果数组B比数组A长
        while(length2 >= 0){
            A[newlength] = B[length2];
            length2--;
            newlength--;
        }
    }
};
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇BZOJ 2079 Poi2010 Guilds 并查集 下一篇BZOJ 3450 Tyvj1952 Easy 期望DP

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·Redis on AWS:Elast (2025-12-27 04:19:30)
·在 Spring Boot 项目 (2025-12-27 04:19:27)
·使用华为开发者空间 (2025-12-27 04:19:24)
·Getting Started wit (2025-12-27 03:49:24)
·Ubuntu 上最好用的中 (2025-12-27 03:49:20)