First Missing Positive
Given an unsorted integer array, find the first missing positive integer.
Given [1,2,0] return 3,
and [3,4,-1,1] return 2.
分析:
我们只需要把1到A.length的数存在原始的数组里,这里有一个要注意的地方就是当我们把一个值放到另一个位置的时候,我们需要把那个值放到它应该在的地方。所以,我们在exchange的时候需要不断自我递归调用exchange method.
1 public class Solution { 2 public int firstMissingPositive(int[] A) { 3 for (int i = 0; i < A.length; i++) { 4 if (A[i] <= A.length && A[i] > 0 && A[A[i] - 1] != A[i]) { 5 swap(A, i, A[i] - 1); 6 i--; 7 } 8 } 9 int i = 0; 10 while (i < A.length && A[i] == i + 1) { 11 i++; 12 } 13 return i + 1; 14 } 15 16 private void swap(int[] A, int i, int j) { 17 int temp = A[i]; 18 A[i] = A[j]; 19 A[j] = temp; 20 } 21 }

浙公网安备 33010602011771号