-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path34. Find First and Last Position of Element in Sorted Array
58 lines (48 loc) · 1.48 KB
/
34. Find First and Last Position of Element in Sorted Array
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
class Solution {
public:
vector<int> searchRange(vector<int>& nums, int target) {
vector<int> result = {-1, -1};
// Find the leftmost occurrence
int left = findLeft(nums, target);
if (left == -1) {
return result;
}
// Find the rightmost occurrence
int right = findRight(nums, target);
result[0] = left;
result[1] = right;
return result;
}
int findLeft(vector<int>& nums, int target) {
int left = 0, right = nums.size() - 1;
int leftmost = -1;
while (left <= right) {
int mid = left + (right - left) / 2;
if (nums[mid] == target) {
leftmost = mid;
right = mid - 1;
} else if (nums[mid] < target) {
left = mid + 1;
} else {
right = mid - 1;
}
}
return leftmost;
}
int findRight(vector<int>& nums, int target) {
int left = 0, right = nums.size() - 1;
int rightmost = -1;
while (left <= right) {
int mid = left + (right - left) / 2;
if (nums[mid] == target) {
rightmost = mid;
left = mid + 1;
} else if (nums[mid] < target) {
left = mid + 1;
} else {
right = mid - 1;
}
}
return rightmost;
}
};