LeetCode OJ:First Missing Positive (第一个丢失的正数)

在leetCode上做的第一个难度是hard的题,题目如下:

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.

关键是要实现0(N)的时间复杂度以及常数级别的空间复杂度,先贴上我写的函数,完全不能达到上面的要求,只能实现NlgN的时间复杂度:

 1 class Solution {
 2 public:
 3     int firstMissingPositive(vector<int>& nums) {
 4         sort(nums.begin(), nums.end());
 5         int sz = nums.size();
 6         if(sz == 0) return 1;
 7         int index;
 8         for (index = 0; index < sz; index++){
 9             if (nums[index] <= 0)
10                 continue;
11             else
12                 break;
13         }
14         if (nums[index] != 1 || index == sz) return 1;  //当没有正数的情况或正数的第一个数不是1的情况
15         while (index < sz){
16             if (nums[index + 1] != nums[index] && nums[index + 1] != nums[index] + 1) //两个判断主要是为了防止vector中重复的数字出现。
17                 return nums[index] + 1;
18             index++;
19         }
20         return nums[index] + 1;
21     }
22 };

由于达不到时间以及空间复杂度的要求,实在想不出来,我去看了下别人写的,现在由于vector可能会出现重复的数,我暂时不知带怎样去解决,只有先这样,回头有时间再回来填坑。

转载于:https://www.cnblogs.com/-wang-cheng/p/4868511.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值