forked from super30admin/Binary-Search-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution1.java
70 lines (64 loc) · 2.04 KB
/
Solution1.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
69
70
// Time Complexity :O(logn)
// Space Complexity :O(1)
// Did this code successfully run on Leetcode :Yes
// Any problem you faced while coding this :No
// Your code here along with comments explaining your approach
class Solution1 {
public int[] searchRange(int[] nums, int target) {
// check for empty array
if(nums==null || nums.length==0)
return new int []{-1,-1};
// find first occurrenece
int left=Bleft(nums,target);
//if element not found at all
if(left==-1)
return new int []{-1,-1};
//find last occurrence
int right=Bright(nums,target,left);
return new int[]{left,right};
}
public int Bleft(int[] nums, int target){
int low=0;
int high=nums.length-1;
while(low<=high){
int mid=low+(high-low)/2;
if(nums[mid]==target){
//if mid is first index or we have moved to extreme left occurenec of the target
if(mid==0||nums[mid-1]!=target)
return mid;
else if(nums[mid-1]==target)
high=mid-1;
else
low=mid+1;
}
else if(nums[mid]>target){
high=mid-1;
}
else
low=mid+1;
}
return -1;
}
public int Bright(int[] nums, int target, int left){
int low=left;
int high=nums.length-1;
while(low<=high){
int mid=low+(high-low)/2;
if(nums[mid]==target){
//if mid is last index or we have moved to extreme right occurenec of the target
if(mid==nums.length-1 || nums[mid+1]!=target)
return mid;
else if(nums[mid+1]==target)
low=mid+1;
else
high=mid-1;
}
else if(nums[mid]>target){
high=mid-1;
}
else
low=mid+1;
}
return -1;
}
}