Description
There are two sorted arrays nums1 and nums2 of size m and n respectively.
Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).
You may assume nums1 and nums2 cannot be both empty.
Example1:
1
2
3
4 nums1 = [1, 3]
nums2 = [2]
The median is 2.0
Example2: 1
2
3
4nums1 = [1, 2]
nums2 = [3, 4]
The median is (2 + 3)/2 = 2.5
解法 双数组双中位数
思想:两个数组同时取中位数,递归实现循环,直到找出第m+n+1 和 第m+n+2 个元素为止,对于特殊情况: - 需要找的元素索引超出数组,则直接从另一数组返回 - 需要找的元素索引等于1,则返回两个数组对于索引下的最小值
「小技巧」中位数奇偶统一求法: \[ \frac{\frac{l+1}{2}+\frac{l+2}{2}}{2} \] 其中1 | class Solution{ |