题目
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.
Note:
- The number of elements initialized in nums1 and nums2 are m and n respectively.
- You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additional elements from nums2.
Example:
Input: nums1 = [1,2,3,0,0,0], m = 3 nums2 = [2,5,6], n = 3 Output: [1,2,2,3,5,6]
分析
1 合并两个有序数组,同时占用数组1的空间,从头开始处理明显是不好处理,此题比较好的思路是从数组1的尾部开始占位,利用三个标记位 m - 1 ,n -1 ,m + n -1
2 因为是在数组一上处理数组一的数据是不坑被丢的,被丢的只能是数组2 ,所以最后还是要把2的剩余值补充
3 还有一种是利用额外数组,思路和合并链表的思路基本一致
4 time O(n) space O(1)
代码
public void merge(int[] nums1, int m, int[] nums2, int n) {
int i = m - 1;
int j = n - 1;
int k = m + n - 1;
while (i >=0 && j>= 0){
if(nums1[i] > nums2[j]) {
nums1[k--] = nums1[i--];
}else{
nums1[k--] = nums2[j--];
}
}
while (j >= 0){
nums1[k--] = nums2[j--];
}
// int[] array = new int[m + n];
// int i = 0, j = 0;
// int idx = 0;
// while (i < m && j < n){
// if(nums1[i] > nums2[j]){
// array[idx++] = nums2[j];
// j++;
// }else{
// array[idx++] = nums1[i];
// i++;
// }
// }
// while (i < m){
// array[idx++] = nums1[i];
// i++;
// }
// while (j < n){
// array[idx++] = nums2[j];
// j++;
// }
// int k = 0;
// for(int l : array){
// nums1[k++] = l;
// }
}