Have you ever found yourself scratching your head over a seemingly simple problem that turns out to be quite tricky? Well, buckle up, because we're about to dive into one such problem that's a favorite among interviewers and algorithm enthusiasts alike: finding the median of two sorted arrays.
Let's start by clearly defining our problem:
Given two sorted arrays nums1
and nums2
of sizes m
and n
respectively, we need to find the median of the two sorted arrays.
Sounds simple enough, right? But here's the catch: we need to do this in O(log(m+n)) time complexity. Now that's where things get interesting!
Before we jump into the solution, let's take a moment to appreciate why this problem is significant:
Let's start with the most straightforward solution that might come to mind:
def findMedianSortedArrays(nums1, nums2): merged = sorted(nums1 + nums2) n = len(merged) if n % 2 == 0: return (merged[n//2 - 1] + merged[n//2]) / 2 else: return merged[n//2]
This approach works, but it has a time complexity of O((m+n)log(m+n)) due to the sorting step. We can do better!
To achieve the required O(log(min(m,n))) time complexity, we need to use a binary search approach. Here's how it works:
nums1
is the smaller array. If not, swap them.nums1
to find the correct partition point.nums2
.Here's the implementation:
def findMedianSortedArrays(nums1, nums2): if len(nums1) > len(nums2): nums1, nums2 = nums2, nums1 m, n = len(nums1), len(nums2) low, high = 0, m while low <= high: partitionX = (low + high) // 2 partitionY = (m + n + 1) // 2 - partitionX maxLeftX = float('-inf') if partitionX == 0 else nums1[partitionX - 1] minRightX = float('inf') if partitionX == m else nums1[partitionX] maxLeftY = float('-inf') if partitionY == 0 else nums2[partitionY - 1] minRightY = float('inf') if partitionY == n else nums2[partitionY] if maxLeftX <= minRightY and maxLeftY <= minRightX: if (m + n) % 2 == 0: return (max(maxLeftX, maxLeftY) + min(minRightX, minRightY)) / 2 else: return max(maxLeftX, maxLeftY) elif maxLeftX > minRightY: high = partitionX - 1 else: low = partitionX + 1
Let's walk through this solution step by step:
nums1
is the smaller array to minimize the binary search range.nums1
to find the partition point.nums2
to ensure we're splitting the combined array in half.maxLeftX <= minRightY
and maxLeftY <= minRightX
, we've found the correct partition.Let's see how this works with an example:
nums1 = [1, 3, 8, 9, 15] nums2 = [7, 11, 18, 19, 21, 25] median = findMedianSortedArrays(nums1, nums2) print(f"The median is: {median}")
Output:
The median is: 11.0
In this case, our algorithm efficiently finds the median without merging the arrays, demonstrating its effectiveness.
Now that you understand the solution, I encourage you to implement it yourself and test it with different inputs. Try to explain the algorithm to a friend or colleague – teaching others is one of the best ways to solidify your understanding!
Remember, mastering algorithms like this not only prepares you for technical interviews but also sharpens your problem-solving skills, making you a better programmer overall. Happy coding!
23/09/2024 | DSA
15/11/2024 | DSA
13/10/2024 | DSA
16/11/2024 | DSA
08/12/2024 | DSA
08/12/2024 | DSA
08/12/2024 | DSA
15/11/2024 | DSA
23/09/2024 | DSA
23/09/2024 | DSA
06/12/2024 | DSA
23/09/2024 | DSA