不多说,直接上代码。
原题:
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
nums1 and nums2 are m and n respectively.
class Solution {
public:
void merge(vector<int>& nums1, int m, vector<int>& nums2, int n) {
int i=m+n-1;
int j=m-1;
int k=n-1;
while(i>=0)
{
if(j>=0&&k>=0)
{
if(nums1[j]>nums2[k])
{
nums1[i]=nums1[j];
j--;
}
else
{
nums1[i]=nums2[k];
k--;
}
}
else if(j>=0)
{
nums1[i]=nums1[j];
j--;
}
else if(k>=0)
{
nums1[i]=nums2[k];
k--;
}
i--;
}
}
};
本文提供了一个C++代码示例,展示了如何将两个已排序的整数数组合并为一个有序数组。通过迭代比较两个数组的元素并按顺序放置到目标数组中,实现了高效的合并操作。
1464

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



