35. Search Insert Position - Detailed Explanation
Problem Statement
You are given a sorted array of distinct integers and a target value. Your task is to return the index if the target is found. If not, return the index where the target would be inserted to maintain the sorted order. The solution must run in O(log n) time complexity.
Examples:
-
Example 1:
- Input:
nums = [1, 3, 5, 6]
,target = 5
- Output:
2
- Explanation: The target
5
is found at index2
.
- Input:
-
Example 2:
- Input:
nums = [1, 3, 5, 6]
,target = 2
- Output:
1
- Explanation: The target
2
is not in the list. It would be inserted at index1
to maintain sorted order.
- Input:
-
Example 3:
- Input:
nums = [1, 3, 5, 6]
,target = 7
- Output:
4
- Explanation: The target
7
is greater than all elements, so it would be inserted at the end of the list.
- Input:
Constraints:
- The array is sorted in ascending order.
- All elements are distinct.
- The solution should achieve O(log n) time complexity.
Hints Before Solving
- Hint 1: Since the array is sorted, binary search is an ideal strategy.
- Hint 2: When the target is not found, pay attention to the final state of the low pointer; it indicates the correct insertion position.
- Hint 3: Consider edge cases where the target is less than the first element or greater than the last element.
Approaches to Solve the Problem
Approach 1: Brute Force Linear Scan (Not Optimal)
Explanation:
- Idea: Iterate through the array and find the first element that is greater than or equal to the target.
- Process:
- Loop through the array.
- If an element is equal to or greater than the target, return its index.
- If the loop completes without finding such an element, return the length of the array.
Complexity:
- Time Complexity: O(n)
- Space Complexity: O(1)
Note: Although simple, this approach does not meet the O(log n) time requirement.
Approach 2: Optimal Binary Search
Explanation:
- Idea: Use binary search to efficiently determine the target's index or the correct insertion point.
- Process:
- Initialize two pointers:
low = 0
andhigh = len(nums) - 1
. - While
low <= high
:- Compute
mid = (low + high) // 2
. - If
nums[mid]
equals the target, returnmid
. - If
nums[mid]
is less than the target, updatelow = mid + 1
. - If
nums[mid]
is greater than the target, updatehigh = mid - 1
.
- Compute
- When the loop ends,
low
will be the insertion position for the target.
- Initialize two pointers:
Visual Walkthrough:
Consider nums = [1, 3, 5, 6]
and target = 2
:
- Step 1:
low = 0
,high = 3
mid = (0 + 3) // 2 = 1
, andnums[1] = 3
which is greater than2
.- Update
high = mid - 1 = 0
.
- Step 2: Now,
low = 0
andhigh = 0
mid = (0 + 0) // 2 = 0
, andnums[0] = 1
which is less than2
.- Update
low = mid + 1 = 1
.
- End: Loop terminates with
low = 1
, which is the correct insertion index.
Complexity:
- Time Complexity: O(log n)
- Space Complexity: O(1)
Code Implementations
Python Implementation
Java Implementation
Step-by-Step Walkthrough of the Optimal Approach
-
Initialization:
- Set
low = 0
andhigh = len(nums) - 1
.
- Set
-
Binary Search Loop:
- While
low <= high
, computemid = (low + high) // 2
. - Compare
nums[mid]
with the target:- If equal, return
mid
immediately. - If
nums[mid] < target
, updatelow
tomid + 1
(target must lie in the right half). - If
nums[mid] > target
, updatehigh
tomid - 1
(target must lie in the left half).
- If equal, return
- While
-
Determine Insertion Point:
- When the loop terminates, the pointer
low
indicates the correct insertion index for the target value.
- When the loop terminates, the pointer
Complexity Analysis
-
Time Complexity:
The binary search algorithm runs in O(log n) time as the search space is halved in each iteration. -
Space Complexity:
O(1) since only a few variables are used regardless of input size.
Common Mistakes & Edge Cases
- Common Mistakes:
- Incorrectly updating
low
andhigh
, which might result in an infinite loop. - Forgetting to return the insertion index (
low
) when the target is not found.
- Incorrectly updating
- Edge Cases:
- Target less than the first element: Should return index
0
. - Target greater than the last element: Should return the length of the array.
- Single element array: Handle by directly comparing the only element with the target.
- Target less than the first element: Should return index
Alternative Variations and Related Problems
-
Alternative Variation:
Modify the problem to work with arrays that contain duplicate elements. For example, returning the index of the first occurrence or the correct insertion position among duplicates. -
Related Problems for Further Practice:
- First Bad Version: Use binary search to find the first occurrence of a condition.
- Find Peak Element: Identify a local maximum in an unsorted array using binary search.
- Search in Rotated Sorted Array: A more challenging variant where the sorted array is rotated.
GET YOUR FREE
Coding Questions Catalog
