88. 合并两个有序数组

  1. public void merge(int[] nums1, int m, int[] nums2, int n) {
  2. // two get pointers for nums1 and nums2
  3. int p1 = m - 1;
  4. int p2 = n - 1;
  5. // set pointer for nums1
  6. int p = m + n - 1;
  7. // while there are still elements to compare
  8. while ((p1 >= 0) && (p2 >= 0))
  9. // compare two elements from nums1 and nums2
  10. // and add the largest one in nums1
  11. nums1[p--] = (nums1[p1] < nums2[p2]) ? nums2[p2--] : nums1[p1--];
  12. // add missing elements from nums2
  13. System.arraycopy(nums2, 0, nums1, 0, p2 + 1);///上面减1了,移动元素的个数。
  14. // 作者:LeetCode
  15. // 链接:https://leetcode-cn.com/problems/merge-sorted-array/solution/he-bing-liang-ge-you-xu-shu-zu-by-leetcode/
  16. }
  1. System.arraycopy(nums2, 0, nums1, m, n);//移动元素的个数
  2. Arrays.sort(nums1);