-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleetcode.java
More file actions
56 lines (46 loc) · 1.38 KB
/
leetcode.java
File metadata and controls
56 lines (46 loc) · 1.38 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
//Find First and Last Position of Element in Sorted Array
class Solution {
public int[] searchRange(int[] nums, int target) {
int[] result = new int[]{-1, -1};
int start = findStartingPosition(nums, target);
if (start == -1) {
return result;
}
int end = findEndingPosition(nums, target);
return new int[]{start, end};
}
private int findStartingPosition(int[] nums, int target) {
int start = 0;
int end = nums.length - 1;
int result = -1;
while (start <= end) {
int mid = start + (end - start) / 2;
if (nums[mid] >= target) {
end = mid - 1;
} else {
start = mid + 1;
}
if (nums[mid] == target) {
result = mid;
}
}
return result;
}
private int findEndingPosition(int[] nums, int target) {
int start = 0;
int end = nums.length - 1;
int result = -1;
while (start <= end) {
int mid = start + (end - start) / 2;
if (nums[mid] <= target) {
start = mid + 1;
} else {
end = mid - 1;
}
if (nums[mid] == target) {
result = mid;
}
}
return result;
}
}