-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathSearchInRotatedSortedArray.java
35 lines (32 loc) · 1.17 KB
/
SearchInRotatedSortedArray.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
// https://leetcode.com/problems/search-in-rotated-sorted-array
// T: O(logN)
// S: O(1)
public class SearchInRotatedSortedArray {
public int search(int[] nums, int target) {
final int pivotIndex = binarySearchPivotIndex(nums);
final int answer = binarySearch(nums, 0, pivotIndex - 1, target);
if (answer != -1) {
return answer;
}
return binarySearch(nums, pivotIndex, nums.length - 1, target);
}
private static int binarySearchPivotIndex(int[] array) {
int left = 0, right = array.length - 1, middle;
while (left <= right) {
middle = left + (right - left) / 2;
if (array[middle] > array[array.length - 1]) left = middle + 1;
else right = middle - 1;
}
return left;
}
private static int binarySearch(int[] array, int start, int end, int x) {
int left = start, right = end, middle;
while (left <= right) {
middle = left + (right - left) / 2;
if (array[middle] == x) return middle;
else if (array[middle] < x) left = middle + 1;
else right = middle - 1;
}
return -1;
}
}