-
Notifications
You must be signed in to change notification settings - Fork 33
/
First_Missing_Positive.java
51 lines (36 loc) · 1.12 KB
/
First_Missing_Positive.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//Leetcode 41. First Missing Positive
//Question - https://leetcode.com/problems/first-missing-positive/
/*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
Note:
Your algorithm should run in O(n) time and uses constant extra space.
*/
class Solution {
public int firstMissingPositive(int[] nums) {
if(nums==null || nums.length==0) return 1;
boolean oneFound = false;
for(int i=0;i<nums.length;i++){
if(nums[i]==1) oneFound = true;
else if(nums[i]<=0) nums[i] = Integer.MAX_VALUE;
}
if(!oneFound) return 1;
for(int i=0 ; i<nums.length ; i++){
int targetIndex = Math.abs(nums[i])-1;
if(targetIndex>=0 && targetIndex<nums.length){
nums[targetIndex] = Math.abs(nums[targetIndex])*-1;
}
}
for(int i=0;i<nums.length;i++){
if(nums[i]>0) return (i+1);
}
return nums.length+1;
}
}