4. Median of Two Sorted Arrays - 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 two sorted arrays, nums1 and nums2, of sizes m and n respectively. The task is to find the median of the two sorted arrays. The overall run time complexity should be O(log(m+n)). The median is defined as the middle element when the two arrays are combined in sorted order. If the total number of elements is odd, the median is the middle element; if even, it is the average of the two middle elements.

Examples

Example 1

  • Input: nums1 = [1, 3], nums2 = [2]
  • Output: 2.0
  • Explanation:
    Combined sorted array: [1, 2, 3]. The middle element is 2.

Example 2

  • Input: nums1 = [1, 2], nums2 = [3, 4]
  • Output: 2.5
  • Explanation:
    Combined sorted array: [1, 2, 3, 4]. The two middle elements are 2 and 3, so the median is (2 + 3) / 2 = 2.5.

Approaches

There are several ways to solve this problem:

1. Merging Approach

  • Idea:
    Merge the two arrays into one sorted array and then compute the median.
  • Time Complexity: O(m+n)
  • Drawback:
    Although simple, merging the entire arrays is not optimal if we only need the median.
  • Idea:
    Use binary search on the smaller array to partition both arrays into two halves such that:
    • The left half contains the first half of the combined sorted elements.
    • The right half contains the second half.
    The partition is chosen so that every element in the left half is less than or equal to every element in the right half. Then:
    • If the total number of elements is odd, the median is the minimum element of the right half.
    • If even, the median is the average of the maximum element from the left half and the minimum element from the right half.
  • Time Complexity: O(log(min(m, n)))
  • Pros:
    Efficient and meets the logarithmic time requirement.
  1. Ensure the Smaller Array is Used for Binary Search:
    Let A = nums1 and B = nums2. If A is longer than B, swap them so that binary search is performed on the smaller array.

  2. Determine the Total and Half Lengths:
    Let m be the length of A and n be the length of B.
    Total elements = m + n
    Half = (m + n) // 2

  3. Binary Search Setup:
    Initialize two pointers, left and right, to perform binary search over A.

  4. Partitioning the Arrays:

    • Choose an index i from A (using binary search), and calculate j = half - i for B.
    • Define:
      • Aleft = A[i-1] if i > 0, else -∞
      • Aright = A[i] if i < m, else +∞
      • Bleft = B[j-1] if j > 0, else -∞
      • Bright = B[j] if j < n, else +∞
  5. Check for Correct Partition:
    The partition is valid if:

    • Aleft <= Bright and Bleft <= Aright
    • If valid:
      • If the total number of elements is odd, the median is min(Aright, Bright).
      • If even, the median is (max(Aleft, Bleft) + min(Aright, Bright)) / 2.
    • If not valid:
      • If Aleft > Bright, move the right pointer left.
      • Otherwise, move the left pointer right.
  6. Return the Result:
    Once the correct partition is found, compute and return the median.

Python Code

Python3
Python3

. . . .

Java Code

Java
Java

. . . .

Explanation

  1. Input Adjustment:
    The solution first ensures that the binary search is performed on the smaller array (swapping if necessary). This helps minimize the number of iterations.

  2. Binary Search Setup:
    We set the binary search boundaries (left and right) for the smaller array. We then calculate the partition indices (i for nums1 and j for nums2) such that the left partition holds half of the total elements.

  3. Partitioning and Edge Handling:

    • If i == 0 or j == 0, there are no elements on the left, so we treat the left value as Integer.MIN_VALUE.
    • Similarly, if i == m or j == n, there are no elements on the right, so we treat the right value as Integer.MAX_VALUE.
  4. Correct Partition Check:
    We check if the current partition is valid by ensuring that the maximum element on the left side of both arrays is less than or equal to the minimum element on the right side.

  5. Median Calculation:

    • If the total number of elements is odd, the median is the maximum element of the left partitions.
    • If even, the median is the average of the maximum element on the left and the minimum element on the right.
  6. Output:
    The main method tests the solution with sample test cases.

Complexity Analysis

  • Time Complexity:
    O(log(min(m, n))) — Binary search is performed on the smaller array.

  • Space Complexity:
    O(1) — Only constant extra space is used.

Common Mistakes and Edge Cases

  • Not Handling Edge Cases:
    • When one of the arrays is empty.
    • When the partition indices are at the boundaries (i.e., no elements on one side, requiring use of negative or positive infinity).
  • Incorrect Partition Adjustment:
    Failing to correctly adjust the binary search boundaries can lead to an infinite loop or incorrect partitioning.
  • Median of Two Sorted Arrays II (if available):
    Variations on finding medians in sorted data structures.

  • Kth Largest Element in an Array:
    Involves selection algorithms and partitioning.

  • Merge Sorted Arrays:
    Combining two sorted arrays efficiently.

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
How many languages are used in frontend development?
227. Basic Calculator II - Detailed Explanation
Learn to solve Leetcode 227. Basic Calculator II with multiple approaches.
Can 1 core have 3 threads?
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.
;