forked from super30admin/Binary-Search-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRotatedSortedArray
36 lines (34 loc) · 858 Bytes
/
RotatedSortedArray
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
// Time Complexity :O(logn)
// Space Complexity :O(1)
// Did this code successfully run on Leetcode :
// Any problem you faced while coding this :
class Solution {
public int search(int[] nums, int target) {
if(nums==null || nums.length==0 )return -1;
int low = 0;
int high = nums.length-1;
while(low<=high){
int mid = low+(high-low)/2;
if(nums[mid]==target){
return mid;
}
else if(nums[low]<=nums[mid]){
if(nums[low]<=target && nums[mid]>target){
high = mid-1;
}
else{
low=mid+1;
}
}
else{
if(nums[high]>=target && nums[mid]<target){
low= mid+1;
}
else{
high = mid-1;
}
}
}
return -1;
}
}