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 52 53 54 55 56 57 58 59 60
|
public class BinaryExtendSearch { public static void main(String[] args) { System.out.println("{5, 6, 7, 8, 9, 1, 2, 3, 4} 找最小值,应该是1:" + bExtendSearch(new int[]{5, 6, 7, 8, 9, 1, 2, 3, 4})); System.out.println("{1, 2, 3, 4}找最小值,应该是1:" + bExtendSearch(new int[]{1, 2, 3, 4})); System.out.println("{1, 0, 1, 1, 1}找最小值,应该是0:" + bExtendSearch(new int[]{1, 0, 1, 1, 1})); System.out.println("{1, 1, 1, 1, 1}找最小值,应该是1:" + bExtendSearch(new int[]{1, 1, 1, 1, 1}));
}
private static int bExtendSearch(int[] arr) { if (arr == null || arr.length < 1) { return -1; }
int target = arr[arr.length - 1];
int first = 0; int last = arr.length - 1; while (first < last) { if (arr[first] < arr[last]) { return arr[first]; }
int mid = (first + last) >> 1;
if (arr[mid] > target) { first = mid + 1; continue; }
if (arr[mid] < target) { last = mid; target = arr[mid]; continue; }
last--; }
return arr[first]; } }
|