-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfinityArray.java
More file actions
58 lines (41 loc) · 1.4 KB
/
InfinityArray.java
File metadata and controls
58 lines (41 loc) · 1.4 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//Find Element In An Infinite Size Array
//https://www.geeksforgeeks.org/find-position-element-sorted-array-infinite-numbers/
/* Note: This can give an "out of bound" error because
in real world scenario there can not be an infinite
size array or an array without a length feature.
*/
public class InfinityArray {
public static void main(String[] args) {
int[] arr = {1, 2, 2, 3, 4, 5, 6, 7, 8, 9, 11, 22, 34, 58, 59, 63, 65, 69, 70};
int target = 70;
System.out.println(searchTarget(target, arr));
}
// Search the location of target
static int searchTarget(int target, int[] arr){
int start = 0;
int end = 0;
// Find high to do binary search
while (arr[end] < target) {
int newStart = end + 1;
end = end + (end - start +1)*2;
start = newStart;
}
return binarySearch(arr, target, start, end);
}
// apply binary search on the found range
static int binarySearch(int[] arr,int target, int start, int end){
while(start <= end){
int mid = start + (end - start)/2;
if(target == arr[mid]){
return mid;
}
else if(target > arr[mid]){
start = mid +1;
}
else if(target < arr[mid]){
end = mid -1;
}
}
return -1;
}
}