Leetcode 34: Find First and Last Position of Element in Sorted Array
grid47 Exploring patterns and algorithms
Nov 3, 2024
5 min read
Solution to LeetCode 34: Find First and Last Position of Element in Sorted Array Problem
Given a sorted array ’nums’ in non-decreasing order, find the starting and ending index of a target value. If the target is not found, return [-1, -1]. Your solution must run in O(log n) time complexity.
Problem
Approach
Steps
Complexity
Input: The input is a sorted array 'nums' and a target value that needs to be searched.
Output: The output should be an array of two integers, representing the starting and ending position of the target value, or [-1, -1] if the target is not found.
Example: For nums = [1, 2, 3, 3, 3, 5, 6, 7], target = 3, the output is [2, 4].
Constraints:
Goal: To find the starting and ending positions of the target in a sorted array efficiently.
Steps:
• Use binary search to find the first occurrence of the target value (lower bound).
• Use binary search to find the position just after the last occurrence of the target value (upper bound).
• Return the index range or [-1, -1] if the target is not found.
Goal: The solution should work within the given constraints and time complexity.
Steps:
• The array can have up to 10^5 elements.
• The target value can be any integer between -10^9 and 10^9.
Assumptions:
• The array is sorted and can contain duplicate values.
vector<int> searchRange(vector<int>& nums, int target) {
This line declares a function named 'searchRange' that takes a sorted array 'nums' and a target integer 'target' as input and returns a vector containing the first and last positions of the target element, or {-1, -1} if the target is not found.
2 : Binary Search
auto it1 = lower_bound(nums.begin(), nums.end(), target);
This line uses the `lower_bound` function to find the first occurrence of the target element in the array. It returns an iterator pointing to the first element greater than or equal to the target.
3 : Binary Search
auto it2 = upper_bound(nums.begin(), nums.end(), target);
This line uses the `upper_bound` function to find the first element greater than the target element in the array. It returns an iterator pointing to the first element greater than the target.
This line checks if the `lower_bound` iterator points to the end of the array or if the element at the `it1` position is not equal to the target. If either condition is true, it means the target is not found in the array, so the function returns {-1, -1}.
If the target is found, the function returns a vector containing the first and last positions of the target. The first position is calculated by subtracting the beginning iterator of the array from the `it1` iterator, and the last position is calculated by subtracting the beginning iterator from the `it2` iterator and then decrementing by 1.
Best Case: O(log n)
Average Case: O(log n)
Worst Case: O(log n)
Description: The time complexity is O(log n) because we are performing binary search operations.
Best Case: O(1)
Worst Case: O(1)
Description: The space complexity is O(1) because no additional space is required beyond the input array.