35. Search Insert Position - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

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:

  1. Example 1:

    • Input: nums = [1, 3, 5, 6], target = 5
    • Output: 2
    • Explanation: The target 5 is found at index 2.
  2. 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 index 1 to maintain sorted order.
  3. 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.

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:
    1. Loop through the array.
    2. If an element is equal to or greater than the target, return its index.
    3. 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.

Explanation:

  • Idea: Use binary search to efficiently determine the target's index or the correct insertion point.
  • Process:
    1. Initialize two pointers: low = 0 and high = len(nums) - 1.
    2. While low <= high:
      • Compute mid = (low + high) // 2.
      • If nums[mid] equals the target, return mid.
      • If nums[mid] is less than the target, update low = mid + 1.
      • If nums[mid] is greater than the target, update high = mid - 1.
    3. When the loop ends, low will be the insertion position for the target.

Visual Walkthrough:

Consider nums = [1, 3, 5, 6] and target = 2:

  • Step 1: low = 0, high = 3
    • mid = (0 + 3) // 2 = 1, and nums[1] = 3 which is greater than 2.
    • Update high = mid - 1 = 0.
  • Step 2: Now, low = 0 and high = 0
    • mid = (0 + 0) // 2 = 0, and nums[0] = 1 which is less than 2.
    • 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

Python3
Python3

. . . .

Java Implementation

Java
Java

. . . .

Step-by-Step Walkthrough of the Optimal Approach

  1. Initialization:

    • Set low = 0 and high = len(nums) - 1.
  2. Binary Search Loop:

    • While low <= high, compute mid = (low + high) // 2.
    • Compare nums[mid] with the target:
      • If equal, return mid immediately.
      • If nums[mid] < target, update low to mid + 1 (target must lie in the right half).
      • If nums[mid] > target, update high to mid - 1 (target must lie in the left half).
  3. Determine Insertion Point:

    • When the loop terminates, the pointer low indicates the correct insertion index for the target value.

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 and high, which might result in an infinite loop.
    • Forgetting to return the insertion index (low) when the target is not found.
  • 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.
  • 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.
TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Is a ServiceNow interview hard?
What is the salary of SE1 in PayPal?
What technology does Zoom use?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;