- Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathFindTheDuplicateNumber.java
More file actions
Latest commit
42 lines (41 loc) · 860 Bytes
/
Copy pathFindTheDuplicateNumber.java
File metadata and controls
42 lines (41 loc) · 860 Bytes
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
/**
* 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.
*/
classSolution {
publicintfirstMissingPositive(int[] a) {
inti = 0;
while (i < a.length) {
if (a[i] > 0 && a[i] <= a.length && a[i] != a[a[i] - 1]) {
swap(a, i, a[i] - 1);
} else {
i++;
}
}
i = 0;
while (i < a.length && a[i] == i + 1) {
i++;
}
returni + 1;
}
privatevoidswap(int[] a, inti, intj) {
intb = a[i];
a[i] = a[j];
a[j] = b;
}
}