博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
88. Merge Sorted Array java solutions
阅读量:5101 次
发布时间:2019-06-13

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

Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.

Note:

You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additional elements from nums2. The number of elements initialized in nums1and nums2 are m and n respectively.

1 public class Solution { 2     public void merge(int[] nums1, int m, int[] nums2, int n) { 3         if(n == 0) return; 4         int k = m + n - 1; 5         int i = m - 1; 6         int j = n - 1; 7         while(i >= 0 && j >= 0){ 8             if(nums1[i] > nums2[j]){ 9                 nums1[k--] = nums1[i--];10             }else{11                 nums1[k--] = nums2[j--];12             }13         }14         if(i < 0){//nums2 元素还有没处理完的15             while(j >= 0)nums1[k--] = nums2[j--];16         } 17     }18 }

 

转载于:https://www.cnblogs.com/guoguolan/p/5630356.html

你可能感兴趣的文章
WCF傻瓜模式写程序
查看>>
《绿色·精简·性感·迷你版》易语言,小到不可想象
查看>>
Java Web学习总结(13)Listener监听器
查看>>
开始Flask项目
查看>>
Ruby:多线程队列(Queue)下载博客文章到本地
查看>>
Android打包key密码丢失找回
查看>>
03 jQuery动画
查看>>
医药箱APP静态小项目
查看>>
安装使用eclipse
查看>>
VC6.0调试技巧(一)(转)
查看>>
linux命令
查看>>
类库与框架,强类型与弱类型的闲聊
查看>>
webView添加头视图
查看>>
php match_model的简单使用
查看>>
在NT中直接访问物理内存
查看>>
Intel HEX 文件格式
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
php_扑克类
查看>>
回调没用,加上iframe提交表单
查看>>
(安卓)一般安卓开始界面 Loding 跳转 实例 ---亲测!
查看>>