LeetCode 4 - Median of Two Sorted Arrays

Median of Two Sorted Arrays Mar 28 '11

There are two sorted arrays A and B 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)).

class Solution {
public:
    double findMedianSortedArrays(int A[], int m, int B[], int n) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        
    }
};


你可能感兴趣的:(LeetCode)