forked from super30admin/Binary-Search-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolution.java
More file actions
35 lines (30 loc) · 814 Bytes
/
Solution.java
File metadata and controls
35 lines (30 loc) · 814 Bytes
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
class Solution {
public int search(int[] nums, int target) {
int low =0;
int high= nums.length-1;
int mid;
while(low<high){
mid=low+ (high-low)/2;
if(nums[mid]==target) return mid;
else if(nums[low]<nums[mid]){
//leftsorted
if(nums[low]<=target&&nums[mid]>target){
high=mid;
}else{
low=mid+1;
}
} else{
//rightSorted
if(nums[mid]<target&&nums[high]>=target){
low=mid+1;
}else{
high=mid;
}
}
}
if(low==high && nums[low]==target){
return low;
}
return -1;
}
}