Post

88. Merge Sorted Array

問題文

You are given two integer arrays nums1 and nums2, sorted in non-decreasing order, and two integers m and n, representing the number of elements in nums1 and nums2 respectively. Merge nums1 and nums2 into a single array sorted in non-decreasing order.The final sorted array should not be returned by the function, but instead be stored inside the array nums1. To accommodate this, nums1 has a length of m + n, where the first m elements denote the elements that should be merged, and the last n elements are set to 0 and should be ignored. nums2 has a length of n

翻訳

非降順でソートされた 2 つの整数配列 nums1 と nums2 と、それぞれ nums1 と nums2 の要素の数を表す 2 つの整数 m と n が与えられます。 nums1 と nums2 を、非降順でソートされた単一の配列にマージします。ソートされた最終的な配列は関数によって返されるのではなく、配列 nums1 内に格納される必要があります。 これに対応するために、nums1 の長さは m + n です。最初の m 要素はマージする必要がある要素を示し、最後の n 要素は 0 に設定され、無視されます。 nums2 の長さは n です


[回答]

1
2
3
4
5
6
public void merge(int[] nums1, int m, int[] nums2, int n) {
       for(int i=0;i<n;i++){
           nums1[m+i]=nums2[i];
       }
       Arrays.sort(nums1);
}

まず、nums1にnums2の要素を加えた後、ソート関数を使用しソートを行います。

This post is licensed under CC BY 4.0 by the author.