题目描述:
给定两个有序整数数组 nums1 和 nums2,将 nums2 合并到 nums1 中,使得 num1 成为一个有序数组。
说明:
初始化 nums1 和 nums2 的元素数量分别为 m 和 n。
你可以假设 nums1 有足够的空间(空间大小大于或等于 m + n)来保存 nums2 中的元素。
示例:
输入:
nums1 = [1,2,3,0,0,0], m = 3
nums2 = [2,5,6], n = 3
输出: [1,2,2,3,5,6]
思路1:
1、二分法先找到右边界;
2、二分法再找到左边界;
3、最终返回结果ans;
Java解法:
class Solution {
public void merge(int[] nums1, int m, int[] nums2, int n) {
int indexofnew = m + n -1;
int indexof2 = n - 1;
int indexof1 = m - 1;
while(indexof2 >= 0 && indexof1 >= 0)
{
if(nums2[indexof2] > nums1[indexof1])
{
nums1[indexofnew] = nums2[indexof2];
indexofnew--;
indexof2--;
}else{
nums1[indexofnew] = nums1[indexof1];
indexofnew--;
indexof1--;
}
}
while(indexof2 >= 0)
{
nums1[indexof2] = nums2[indexof2];
indexof2--;
}
}
}
Java解法2:
class Solution {
public void merge(int[] nums1, int m, int[] nums2, int n) {
System.arraycopy(nums2, 0, nums1, m, n);
Arrays.sort(nums1);
}
}
python3解法:
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/merge-sorted-array