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.
第一次 自己写的 用map 但不和题意,题意叫我们采用恒定空间,
第一次代码
class Solution {
public:
int firstMissingPositive(int A[], int n) {
vector<int> map;
map.resize(100000);
int max=0;
for(int i=0; i<n; i++){
if(A[i]>0)
map[A[i]]=1;
max=(A[i]>max)?A[i]:max;
}
for(int i=1; i<=max+1; i++){
if(map[i]==0){
return i;
}
}
return max+1;
}
};
第二次 搜索了一些方法
第一遍 遍历的时候 将 遍历到的值temp,放在A[temp-1]中,将A[temp-1]原来的值与A[i]替换,这样数组中的值A[i]=i+1,第一个位置为1,第二个位置为2;
第二次遍历如果A[i]!=i+1;那么返回i+1