码迷,mamicode.com
首页 > 其他好文 > 详细

First Missing Positive

时间:2014-05-26 09:43:14      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   code   java   

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.

思路:需找数组中第一个未出现的正整数,要求时间复杂度为O(n),空间复杂度为常数,则我们可以在原有数组上做交换。就是让数组中的第i位对应i+1的数值,然后遍历数组找到缺失的数值。

bubuko.com,布布扣
class Solution {
public:
    int firstMissingPositive(int A[], int n) {
        for(int i=0;i<n;i++)
        {
            int data=A[i];
            while(data>=1&&data<=n&&A[data-1]!=data)
            {
                swap(A[data-1],data);
            }
        }
        for(int i=0;i<n;i++)
        {
            if(A[i]!=i+1)
                return i+1;
        }
        return n+1;
    }
};
bubuko.com,布布扣

 

First Missing Positive,布布扣,bubuko.com

First Missing Positive

标签:style   c   class   blog   code   java   

原文地址:http://www.cnblogs.com/awy-blog/p/3747212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!