-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathProblem1.java
More file actions
39 lines (32 loc) · 1.15 KB
/
Copy pathProblem1.java
File metadata and controls
39 lines (32 loc) · 1.15 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
39
// Time Complexity : O(log n)
// Space Complexity : O(1)
// Did this code successfully run on Leetcode : Yes
// Any problem you faced while coding this : No
//Search in rotated sorted array
// - At each step, determines whether the left half or right half is sorted, then checks if the target lies within that sorted portion.
// - Narrows the search range accordingly and returns the target's index if found; otherwise returns -1.
class Problem2 {
public int search(int[] nums, int target) {
int low = 0, high = nums.length - 1;
while(low <= high) {
int mid = low + ((high - low) / 2);
if(nums[mid] == target) {
return mid;
}
if(nums[low] < nums[mid]) {
if(target >= nums[low] && target < nums[mid]) {
high = mid - 1;
} else {
low = mid + 1;
}
} else {
if(target > nums[mid] && target <= nums[high]) {
low = mid + 1;
} else {
high = mid - 1;
}
}
}
return -1;
}
}