class Solution {
/**
* @param A: An integer array.
* @param B: An integer array.
* @return: a double whose format is *.5 or *.0
*/
public double findMedianSortedArrays(int[] A, int[] B) {
// write your code here
int lenA = A.length;
int lenB = B.length;
int totalLen = lenA + lenB;
if (totalLen % 2 == 0) {
int sum = findKth(A, 0, B, 0, totalLen / 2) + findKth(A, 0, B, 0, 1 + totalLen / 2);
return sum / 2.0;
} else {
return findKth(A, 0, B, 0, 1 + totalLen / 2);
}
}
private int findKth(int[] A, int startA, int[] B, int startB, int k) {
if (startA >= A.length) return B[startB + k - 1];
if (startB >= B.length) return A[startA + k - 1];
if (k == 1) return Math.min(A[startA], B[startB]);
int a = ((startA + k / 2) > A.length) ? Integer.MAX_VALUE : A[startA + k / 2 - 1];
int b = ((startB + k / 2) > B.length) ? Integer.MAX_VALUE : B[startB + k / 2 - 1];
if (a == b) {
return a;
} else if (a > b) {
return findKth(A, startA, B, startB + k / 2, k - k / 2);
} else {
return findKth(A, startA + k / 2, B, startB, k - k / 2);
}
}
}
65.Median of two Sorted Arrays
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 重刷leetcode,刷到此题。描述: There are two sorted arrays nums1 and...
- 原题链接 描述: There are two sorted arrays nums1 and nums2 of s...
- Median of Two Sorted Arrays 这是一个leetcode上的算法题目,标记为hard。具体...
- There are two sorted arrays nums1 and nums2 of size m...
- Question Description My Code Test Result Solution Put num...