-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfiniteArray.java
More file actions
41 lines (37 loc) · 1.15 KB
/
InfiniteArray.java
File metadata and controls
41 lines (37 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
40
41
package com.company;
public class InfiniteArray {
public static void main(String[] args) {
int[] arr = {3,5,7,10,34,56,757,44563,53475,34346346,346364346};
int target = 10;
System.out.println(ans(arr, target));
}
static int ans(int[] arr, int target) {
//first find the range
//start with a box of size 2
int start = 0;
int end = 1;
// condition for the target to lie in the range
while (target > arr[end]) {
int newStart = end + 1;
//double the box value
end = (2 * newStart) + 1;
start = newStart;
}
return binarySearch(arr, target, start, end);
}
static int binarySearch(int[] arr, int target, int start, int end) {
while (start <= end) {
//find the middle element
int mid = start + (end - start) / 2;
if (target < arr[mid]) {
end = mid - 1;
} else if (target > arr[mid]) {
start = mid + 1;
} else {
//answer is found
return mid;
}
}
return -1;
}
}