Input: nums1 = [1,3], nums2 = [2]
Output: 2.00000
Explanation: merged array = [1,2,3] and median is 2.
Input: nums1 = [1,2], nums2 = [3,4]
Output: 2.50000
Explanation: merged array = [1,2,3,4] and median is (2 + 3) / 2 = 2.5.
Input: nums1 = [0,0], nums2 = [0,0]
Output: 0.00000
Input: nums1 = [], nums2 = [1]
Output: 1.00000
Input: nums1 = [2], nums2 = []
Output: 2.00000
class Solution {
public:
double findMedianSortedArrays(vector<int>& nums1, vector<int>& nums2) {
int m = nums1.size(), n = nums2.size();
if ((m + n) % 2 == 1) {
return findKthElement((m + n) / 2 + 1, nums1, 0, nums2, 0);
} else {
return (findKthElement((m + n) / 2, nums1, 0 ,nums2, 0) + findKthElement((m + n) / 2 + 1, nums1, 0 ,nums2, 0)) / 2;
}
}
double findKthElement(int k, const vector<int>& nums1, int idx1, const vector<int>& nums2, int idx2) {
int l1 = nums1.size() - idx1;
int l2 = nums2.size() - idx2;
if (l1 > l2) {
return findKthElement(k, nums2, idx2, nums1, idx1);
}
if (l1 == 0) {
return nums2[idx2 + k - 1];
}
if (k == 1) {
return min(nums1[idx1], nums2[idx2]);
}
int cut1 = min(k/2, l1);
int cut2 = k - cut1;
if (nums1[idx1 + cut1 - 1] > nums2[idx2 + cut2 - 1]) {
return findKthElement(k - cut2, nums1, idx1, nums2, idx2 + cut2);
} else {
return findKthElement(k - cut1, nums1, idx1 + cut1, nums2, idx2);
}
}
};