首页 > 其他 > 详细

41. First Missing Positive

时间:2020-09-13 17:12:15      阅读:48      评论:0      收藏:0      [点我收藏+]

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

Example 1:

Input: [1,2,0]
Output: 3

Example 2:

Input: [3,4,-1,1]
Output: 2

Example 3:

Input: [7,8,9,11,12]
Output: 1

Follow up:

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

 

class Solution {
public:
    int firstMissingPositive(vector<int>& nums) {
        //遍历一遍,将所有的小于n的正数放到对应的位置
        int n = nums.size();
        for(int i=0;i<n;){
            if(nums[i] > 0 && nums[i] <= n && nums[i] != nums[nums[i]-1]){
                swap(nums[i],nums[nums[i]-1]);
            }else{
                i++;
            }
        }
        //寻找第一个不符合要求的正整数
        for(int i=0;i<n;i++){
            if(nums[i] != i+1)
                return i+1;
        }
        return n+1;
        
    }
};

 

41. First Missing Positive

原文:https://www.cnblogs.com/wsw-seu/p/13661927.html

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