前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Leetcode: Merge Sorted Array

Leetcode: Merge Sorted Array

作者头像
卡尔曼和玻尔兹曼谁曼
发布2019-01-22 17:31:13
4640
发布2019-01-22 17:31:13
举报

题目: 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 and n respectively.

思路分析: 我刚开始是从前面开始比较的,发现要移动很多元素,后来从后面进行比较,代码异常简单!

C++参考代码:

代码语言:javascript
复制
class Solution
{
public:
    void merge(int A[], int m, int B[], int n)
    {
        int k = m + n - 1;
        int i = m - 1;
        int j = n - 1;
        //两个数组同时从后面进行比较,将大的放在A数组末尾
        while (i >= 0 && j >= 0)
        {
            A[k--] = A[i] > B[j] ? A[i--] : B[j--];
        }
        //如果经过上面的while循环比较后B数组还有元素,则这些元素都小于A中最小元素,直接放入A数组最前面就好
        while (j >= 0)
        {
            A[k--] = B[j--];
        }
    }
};
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2015年03月13日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档