A. Merge Sorted Array (two brushes, a concise notation)

Source: Internet
Author: User

Given sorted integer Arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.

Note:
Assume that nums1 have enough space (size that's greater or equal to M + N) to hold additional elements from NUMS2 . The number of elements initialized in Nums1 and Nums2 is M and N respectively.

Subscribe to see which companies asked this question



AC Code:

Class Solution {
Public:
    void merge (vector<int>& nums1, int m, vector<int>& n UMS2, int n) {
        int i=m-1,j=n-1,k=m+n-1;
        while (j>=0)
        {
            nums1[k--]= (i>=0&&nums1[i]>nums 2[J])? nums1[i--]:nums2[j--];
       }
       //return nums1;
   }
};

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.