题目描述:
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]
归并排序,将第二个数组的元素合并至第一个数组。由于第一个数组的末尾有足够空间,所以我们从数组末尾选取较大的元素开始归并。
class Solution {
public:
void merge(vector<int>& nums1, int m, vector<int>& nums2, int n) {
if(m==0)
{
nums1=nums2;
return;
}
if(n==0) return;
int i=m-1;
int j=n-1;
int pos=m+n-1;
while(i>=0&&j>=0)
{
if(nums1[i]<=nums2[j])
{
nums1[pos]=nums2[j];
j--;
}
else
{
nums1[pos]=nums1[i];
i--;
}
pos--;
}
if(i<0)
{
while(j>=0)
{
nums1[pos]=nums2[j];
j--;
pos--;
}
}
if(j<0) return;
}
};
本文介绍了一种高效的数组合并方法,该方法用于将两个已排序的整数数组合并为一个有序数组。通过从数组尾部开始比较并放置较大元素的方式,确保了合并后的数组仍然保持有序状态。这种方法特别适用于当第一个数组有足够的预留空间来容纳第二个数组的所有元素时。
334

被折叠的 条评论
为什么被折叠?



