-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRBSRecursion.java
More file actions
31 lines (30 loc) · 918 Bytes
/
RBSRecursion.java
File metadata and controls
31 lines (30 loc) · 918 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
package com.aniketh;
// RBS is Rotated Binary Search
public class RBSRecursion {
public static void main(String[] args) {
int[] arr = {5,6,7,8,9,1,2,3};
System.out.println(search(arr, 8, 0, arr.length-1));
}
static int search(int[] arr, int target, int s, int e) {
if (s > e) {
return -1;
}
int m = s + (e - s) / 2;
if (arr[m] == target) {
return m;
}
// Conditions
if (arr[s] <= arr[m]) {
if (target >= arr[m] && target <= arr[m]) {
return search(arr, target, s, m-1);
} else {
return search(arr, target, m+1, e);
}
}
if (target >= arr[m] && target <= arr[e]) {
return search(arr, target, m+1, e);
} else {
return search(arr, target, s, m-1);
}
}
}