-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathProblem-3.java
68 lines (53 loc) · 1.59 KB
/
Problem-3.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* @author AkashGoyal
*/
/**
--------------------- Problem----------->> Search in Rotated Sorted Array
Problem Link :- https://leetcode.com/problems/search-in-rotated-sorted-array/
Reference:- https://www.youtube.com/watch?v=r3pMQ8-Ad5ss
*/
class Solution {
public int search(int[] nums, int target) {
return BinSearch(nums,0,nums.length-1,target);
}
int BinSearch(int nums[],int left, int right,int target)
{
int mid=0;
while(left<=right)
{
mid=left+(right-left)/2;
//sorted
if(nums[mid]==target)
{
return mid;
}
// check if left side is sorted
if(nums[mid]>=nums[left])
{
//figure out if your element lies in left side or not
if(nums[left]<=target && target<=nums[mid])
{
right=mid-1;
}
else
{
left=mid+1;
}
}
//// else check if right side is sorted
else
{
//figure out if your element lies in right side or not
if(nums[mid]<=target && target<=nums[right])
{
left=mid+1;
}
else
{
right=mid-1;
}
}
}
return -1;
}
}