码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode] Median of Two Sorted Arrays

时间:2015-03-30 16:37:48      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:c++   leetcode   

Median of Two Sorted Arrays

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)).

解题思路:

最基本的办法是合并排序法,先将两个数组合并成一个数组,然后计算中位数的值(他的一个改进版就是计数)。但时间复杂度为O(m+n),不满足题目的要求。我完全没有思路,在网上查找的解题思路如下:

将原题看成是找第k小的数,递归查找结果。几个边界条件为:

  • 如果A或者B为空,则直接返回B[k-1]或者A[k-1];
  • 如果k为1,我们只需要返回A[0]和B[0]中的较小值;
  • 如果A[k/2-1]=B[k/2-1],返回其中一个;
实现代码:

class Solution {
public:
    double findMedianSortedArrays(int A[], int m, int B[], int n) {
        int total = m + n;
        if(total & 1 ) {    //奇数
            return findKth(A, m, B, n, ((m + n) >> 1) + 1);
        }else{  //偶数
            return (findKth(A, m, B, n, (m + n) >> 1) + findKth(A, m, B, n, ((m + n) >> 1) + 1)) / 2;
        }
    }
    
    double findKth(int A[], int m, int B[], int n, int k){
        if(m > n){
            return findKth(B, n, A, m, k);
        }
        if(m == 0){
            return B[k - 1];
        }
        if(k == 1){
            return min(A[0], B[0]);
        }
        
        int pa = min(k >> 1, m), pb = k - pa;
        //排除小的那部分
        if(A[pa-1] < B[pb-1]){
            return findKth(A + pa, m - pa, B, n, k - pa);
        }else if(A[pa - 1] > B[pb - 1]){
            return findKth(A, m, B + pb, n - pb, k - pb);
        }else{
            return A[pa-1];
        }
    }
private:
    int min(int a, int b){
        return a>b?b:a;
    }
};
有几个地方可以值得借鉴:状态转化思想,因为findKth不知道两个数组哪个更长些,为了免除不必要的判断,直接转化为其中一种状态,我们在编码的时候只需要考虑一种状态即可。

参考网址:http://blog.csdn.net/yutianzuijin/article/details/11499917

[LeetCode] Median of Two Sorted Arrays

标签:c++   leetcode   

原文地址:http://blog.csdn.net/kangrydotnet/article/details/44750519

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!