-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFirstLastPosition.java
More file actions
58 lines (51 loc) · 1.35 KB
/
FirstLastPosition.java
File metadata and controls
58 lines (51 loc) · 1.35 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
public class FirstLastPosition {
public static int[] Search(int nums[],int target){
int first=findFirst(nums,target);
int last=findLast(nums,target);
return new int[]{first,last};
}
public static int findFirst(int nums[],int target){
int left=0;
int right=nums.length-1;
int ans=-1;
while(left<=right){
int mid=(left+right)/2;
if(nums[mid]==target){
ans=mid;
right=mid-1;
}
else if(nums[mid]<target){
left=mid+1;
}
else{
right=mid-1;
}
}
return ans;
}
public static int findLast(int nums[],int target){
int left=0;
int right=nums.length-1;
int ans=-1;
while(left<=right){
int mid=(left+right)/2;
if(nums[mid]==target){
ans=mid;
left=mid+1;
}
else if(nums[mid]<target){
left=mid+1;
}
else{
right=mid-1;
}
}
return ans;
}
public static void main(String[] args) {
int nums[]={3,5,6,7,8,8,9};
int target=8;
int result[]= Search(nums,target);
System.out.println(result[0]+" "+result[1]);
}
}