合并两个有序数组【LC88】
给你两个按 非递减顺序 排列的整数数组
nums1
和nums2
,另有两个整数m
和n
,分别表示nums1
和nums2
中的元素数目。请你 合并
nums2
到nums1
中,使合并后的数组同样按 非递减顺序 排列。**注意:**最终,合并后数组不应由函数返回,而是存储在数组
nums1
中。
为了应对这种情况,nums1
的初始长度为 m + n
,其中前 m
个元素表示应合并的元素,后 n
个元素为 0
,应忽略。nums2
的长度为 n
。
又一周
这周两个笔试,团子AK,某东A了两题。自己的坚持没有白费,加油冲冲
class Solution { public void merge(int[] nums1, int m, int[] nums2, int n) { int i = m - 1, j = n - 1; int index = m + n - 1; while (i >= 0 || j >= 0){ if (j < 0 ||(i >= 0 && nums1[i] >= nums2[j])){ nums1[index--] = nums1[i--]; }else if (i < 0 ||(j >= 0 && nums1[i] < nums2[j])){ nums1[index--] = nums2[j--]; } } } }