溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

leetCode 88. Merge Sorted Array 有序數(shù)組

發(fā)布時間:2020-07-24 04:30:27 來源:網絡 閱讀:281 作者:313119992 欄目:編程語言

88. Merge Sorted Array

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.

問題描述:將兩個有序數(shù)組合并成一個有序數(shù)組。

思路:創(chuàng)建第三個數(shù)組,將其它兩個數(shù)組有序的插入第三個數(shù)組中。然后根據需求變化。


代碼如下:

class Solution {
public:
    void merge(vector<int>& nums1, int m, vector<int>& nums2, int n) {
        vector<int> result;
        
        int i= 0;
        int j=0;
        while( (i < m) && (j < n))
        {
            if(nums1[i] <= nums2[j])
            {
                result.push_back(nums1[i]);
                i++;
            }
            else
            {
                result.push_back(nums2[j]);
                j++;
            }
        }
        if(i < m)
        {
            for(;i < m; i++ )
            {
                result.push_back(nums1[i]);
            }
        }
        
        if(j < n)
        {
            for(;j < n; j++)
            {
                result.push_back(nums2[j]);
            }
        }
        
        swap(result,nums1);
    }
};


2016-08-05 23:36:14

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI