forked from super30admin/Binary-Search-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchInRotatedArray.java
More file actions
38 lines (33 loc) · 1.21 KB
/
Copy pathSearchInRotatedArray.java
File metadata and controls
38 lines (33 loc) · 1.21 KB
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
// Time Complexity : O(log n) as it's binary search.
// Space Complexity : O(1)
// Did this code successfully run on Leetcode : Yes
// Any problem you faced while coding this : Not much, once the idea to find the sorted part on the array, it is a binary search to find the target.
// Your code here along with comments explaining your approach
class Solution {
public int search(int[] nums, int target) {
int low = 0;
int high = nums.length - 1;
int mid = 0;
while(low<=high){
mid = low + (high-low)/2; //to avoid number overflow
if(nums[mid] == target){
return mid;
}
if(nums[low] <= nums[mid]){ // considering the left half
if(nums[low] <= target && nums[mid] > target){ //checking if target is in left half
high = mid - 1;
}
else{
low = mid + 1;
}
}else{ // considering the right half
if(nums[mid] < target && nums[high] >= target){
low = mid + 1;
}else{
high = mid - 1;
}
}
}
return -1;
}
}