Median of Two Sorted Arrays

来源:互联网 发布:flex java 做什么的 编辑:程序博客网 时间:2024/06/06 19:04

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

double findKth(int a[], int m, int b[], int n, int k)  {      //always assume that m is equal or smaller than n      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]);      //divide k into two parts      int pa = min(k / 2, 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];  }  class Solution  {  public:      double findMedianSortedArrays(int A[], int m, int B[], int n)      {          int total = m + n;  //m和n分别代表了数组A和B的长度        if (total & 0x1)              return findKth(A, m, B, n, total / 2 + 1);          else              return (findKth(A, m, B, n, total / 2)                      + findKth(A, m, B, n, total / 2 + 1)) / 2;      }  }; 
0 0
原创粉丝点击