-
Notifications
You must be signed in to change notification settings - Fork 1
/
searchinrotatedarr.java
42 lines (39 loc) · 1.21 KB
/
searchinrotatedarr.java
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
package striver.binarysearch;
public class searchinrotatedarr {
public static int searchinarr(int nums[] , int target){
for(int i = 0 ; i < nums.length -1; i++){
if(nums[i] == target) {
return nums[i];
}
}
return -1;
}
public static int search(int[] nums, int target) {
int low = 0 , high = nums.length-1;
while(low <= high){
int mid = (low + high)/2;
if(nums[mid] == target){
return mid;
}
if(nums[mid] >= nums[low]){
if(nums[low] <= target && nums[mid] >= target){
high = mid -1;
}else{
low = mid + 1;
}
}else{
if(nums[mid] <= target && target <= nums[high]){
low = mid + 1;
}else{
high = mid -1;
}
}
}
return -1;
}
public static void main(String[]args){
int nums[] = { 8 , 7, 6 , 1 , 2 , 3 ,4 ,5};
int target = 8;
System.out.print("the element found at " + searchinarr(nums, target));
}
}