首页 > 其他 > 详细

[Leetcode] First Missing Positive

时间:2016-08-27 07:33:25      阅读:257      评论:0      收藏:0      [点我收藏+]

41. 

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.

 

Solution:

Scan the array, for every index, put the number into the right place. Then scan the array for the 2nd time, find the wrong number should be easy.

Especially notice the loop condition.

class Solution(object):
    def firstMissingPositive(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """ 
        n = len(nums)
        for i in xrange(n):
            while n>=nums[i]>0 and nums[i] != nums[nums[i]-1]:    #especially notice the condition, num[i]!=nums[nums[i]-1], which means the current number is corret in the corresponding index
                tmp = nums[i]-1
                nums[i], nums[tmp] = nums[tmp], nums[i]
        for i in xrange(n):
            if nums[i] != i+1:
                return i+1
        return n+1
                

 

[Leetcode] First Missing Positive

原文:http://www.cnblogs.com/chrisyao/p/5812197.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!