博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode]Merge Sorted Array
阅读量:5312 次
发布时间:2019-06-14

本文共 1157 字,大约阅读时间需要 3 分钟。

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 to hold additional elements from B. The number of elements initialized in A and B are m and n respectively.

思考:3指针。从后往前遍历。

class Solution {public:    void merge(int A[], int m, int B[], int n) {        int i=m-1;        int j=n-1;        int k=m+n-1;        while(k>=0)        {            if(i>=0&&A[i]>=B[j])             {                A[k]=A[i];                i--;                k--;            }            else if(j>=0&&A[i]
=0&&j<0) return; if(i<0&&j>=0) { for(int p=0;p<=j;p++) { A[p]=B[p]; } return; } } }};

2014-03-27 16:53:19

class Solution {public:    void merge(int A[], int m, int B[], int n) {        int i=m-1;        int j=n-1;        int k=m+n-1;        while(i>=0&&j>=0)        {            if(A[i]>B[j]) A[k--]=A[i--];            else A[k--]=B[j--];        }        //未考虑m=0的情况        while(j>=0) A[k--]=B[j--];    }};

  

 

转载于:https://www.cnblogs.com/Rosanna/p/3465714.html

你可能感兴趣的文章
判断9X9数组是否是数独的java代码
查看>>
00-自测1. 打印沙漏
查看>>
UNITY在VS中调试
查看>>
SDUTOJ3754_黑白棋(纯模拟)
查看>>
Scala入门(1)Linux下Scala(2.12.1)安装
查看>>
如何改善下面的代码 领导说了很耗资源
查看>>
Quartus II 中常见Warning 原因及解决方法
查看>>
php中的isset和empty的用法区别
查看>>
Android ViewPager 动画效果
查看>>
pip和easy_install使用方式
查看>>
博弈论
查看>>
Redis sentinel & cluster 原理分析
查看>>
我的工作习惯小结
查看>>
把word文档中的所有图片导出
查看>>
浏览器的判断;
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
机器学习/深度学习/其他开发环境搭建记录
查看>>
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>