-
Notifications
You must be signed in to change notification settings - Fork 0
/
orderAgnosticBS.java
60 lines (60 loc) · 1.83 KB
/
orderAgnosticBS.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
52
53
54
55
56
57
58
59
60
public class orderAgnosticBS {
public static void main(String[] args) {
int[] bitonicArray = {1, 5, 9, 13, 11, 8, 7, 4};
int target = 8;
int ans = answerFound(bitonicArray, target);
System.out.println(ans);
}
static int answerFound(int[] arr, int target){
int peak = peakIndex(arr);
int firstTry = orderAgnosticBinarySearch(arr, target, 0, peak);
if(arr[peak] == target){
return target;
}
if(firstTry != -1){
return firstTry;
}else{
return orderAgnosticBinarySearch(arr, target, peak+1, arr.length-1);
}
}
static int orderAgnosticBinarySearch(int[] arr, int target, int start, int end){
boolean isAsc = arr[start] < arr[end];
while(start < end){
int mid = start + (end - start) / 2;
if(target == arr[mid]){
return mid;
}
if(isAsc){
if(target < arr[mid]){
end = mid-1;
}else if(target > arr[mid]){
start = mid+1;
}else{
return mid;
}
}else{
if(target > arr[mid]){
end = mid-1;
}else if(target < arr[mid]){
start = mid+1;
}else{
return mid;
}
}
}
return -1;
}
static int peakIndex(int[] arr){
int start = 0;
int end = arr.length-1;
while(start < end){
int mid = start + (end - start) / 2;
if(arr[mid] < arr[mid+1]){
start = mid+1;
}else{
end = mid;
}
}
return start;
}
}