Problem Description
Given an array of integers nums
sorted in non-decreasing order, find the starting and ending position of a given target
value. If target
is not found in the array, return [-1, -1]
. You must write an algorithm with O(log n)
runtime complexity.
Key Insights
- The array is sorted, which allows the use of binary search.
- We need to find both the first and last occurrence of the target.
- A binary search can be modified to find the leftmost and rightmost indices of the target.
Space and Time Complexity
Time Complexity: O(log n)
Space Complexity: O(1)
Solution
To solve the problem, we will use a modified binary search approach. The algorithm will be executed twice:
- First to find the leftmost index of the target.
- Second to find the rightmost index of the target.
Both searches will take advantage of the sorted property of the array. We will maintain a low and high pointer to narrow down the search space, adjusting the pointers based on the comparisons with the target value.