Leetcode First Missing Positive

Source: Internet
Author: User

Given an unsorted integer array, find the first missing positive integer.

For example,
Given [1,2,0] return 3 ,
and [3,4,-1,1] return 2 .

Your algorithm should run in O(n) time and uses constant space.

Problem-Solving ideas: The array has a total n number, if all is continuous, the largest number is N, that is, the value of the largest return is n+1, traversing the array, if the current number of num[i],

If Num[i]<=0 or num[i] exceeds n, then the first discarded integer must be in front of Num[i], and num[i] and num[n-1] will be exchanged, n--;

If 1<=num[i]<=n, indicate that this number may be good, put him in the right place Swap (num[i],num[num[i]-1])

If num[i]==i+1, it indicates that the number is in the correct position, i++

classSolution { Public:    intFirstmissingpositive (intA[],intN) {intm =N;  for(intI=0; i<m;i++)        {            if(A[i] = = i+1)Continue; Else            {                if(A[i] > m | | A[i] = =0|| A[i] <0|| A[i] <=i) {if(i==m-1)                        returnm; Swap (A[i],a[m-1]); M--; I--; }                Else                {                    if(A[i] = = a[a[i]-1]) {Swap (a[i],a[m-1]); M--; I--; }                    Else{swap (A[i],a[a[i]-1]); I--; }                }            }        }        returnm+1; }};

Leetcode First Missing Positive

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.