-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathProblem2.java
More file actions
34 lines (28 loc) · 956 Bytes
/
Copy pathProblem2.java
File metadata and controls
34 lines (28 loc) · 956 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
// 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 a sorted array of unknown size
// - Finds a valid search range by exponentially expanding the upper bound until it is greater than or equal to the target
// - Performs binary search within the identified range to locate the target.
class Problem3 {
public int search(ArrayReader reader, int target) {
int low = 0, high = 1;
while(target > reader.get(high)) {
low = high;
high = high * 2;
}
while(low <= high) {
int mid = low + (high - low) / 2;
if(reader.get(mid) == target) {
return mid;
}
if(target < reader.get(mid)) {
high = mid - 1;
} else {
low = mid + 1;
}
}
return -1;
}
}