You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
614 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package class14;
// 测试链接https://leetcode.com/problems/first-missing-positive/
public class Code06_MissingNumber {
public static int firstMissingPositive(int[] arr) {
// l是盯着的位置
// 0 ~ L-1有效区
int L = 0;
int R = arr.length;
while (L != R) {
if (arr[L] == L + 1) {
L++;
} else if (arr[L] <= L || arr[L] > R || arr[arr[L] - 1] == arr[L]) { // 垃圾的情况
swap(arr, L, --R);
} else {
swap(arr, L, arr[L] - 1);
}
}
return L + 1;
}
public static void swap(int[] arr, int i, int j) {
int tmp = arr[i];
arr[i] = arr[j];
arr[j] = tmp;
}
}