[LintCode] 两个排序数组的中位数

 1 class Solution {
 2 public:
 3     /**
 4      * @param A: An integer array.
 5      * @param B: An integer array.
 6      * @return: a double whose format is *.5 or *.0
 7      */
 8     double findMedianSortedArrays(vector<int> A, vector<int> B) {
 9         // write your code here
10         int m = A.size(), n = B.size();
11         if (m > n) return findMedianSortedArrays(B, A);
12         int imin = 0, imax = m, half = (m + n + 1) / 2, i, j, num1, num2;
13         while (imin <= imax) {
14             i = (imin + imax) / 2;
15             j = half - i;
16             if (j > 0 && i < m && B[j - 1] > A[i])
17                 imin = i + 1;
18             else if (i > 0 && j < n && A[i - 1] > B[j])
19                 imax = i - 1;
20             else {
21                 if (!i) num1 = B[j - 1];
22                 else if (!j) num1 = A[i - 1];
23                 else num1 = max(A[i - 1], B[j - 1]);
24                 break;
25             }
26         }
27         if ((m + n) % 2) return num1;
28         if (i == m) num2 = B[j];
29         else if (j == n) num2 = A[i];
30         else num2 = min(A[i], B[j]);
31         return (num1 + num2) / 2.0;
32     }
33 };
时间: 2024-10-12 04:31:43

[LintCode] 两个排序数组的中位数的相关文章

LeetCode-4. 两个排序数组的中位数(详解)

链接:https://leetcode-cn.com/problems/median-of-two-sorted-arrays/description/ 有两个大小为 m 和 n 的排序数组 nums1 和 nums2 . 请找出两个排序数组的中位数并且总的运行时间复杂度为 O(log (m+n)) . 示例 1: nums1 = [1, 3] nums2 = [2] 中位数是 2.0 示例 2: nums1 = [1, 2] nums2 = [3, 4] 中位数是 (2 + 3)/2 = 2.

两个排序数组的中位数

中英题面 给定两个大小为 m 和 n 的有序数组 nums1 和 nums2 . There are two sorted arrays nums1 and nums2 of size m and n respectively. 请找出这两个有序数组的中位数.要求算法的时间复杂度为 O(log (m+n)) . Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+

Leetcode(4)-两个排序数组的中位数

给定两个大小为 m 和 n 的有序数组 nums1 和 nums2 . 请找出这两个有序数组的中位数.要求算法的时间复杂度为 O(log (m+n)) . 示例 1: nums1 = [1, 3] nums2 = [2] 中位数是 2.0 示例 2: nums1 = [1, 2] nums2 = [3, 4] 中位数是 (2 + 3)/2 = 2.5 自己的思路:既然两个数组都是有序的,我可以将两个数组合并成一个数组,依然有序,然后根据奇偶来判断出中位数. double findMedianSo

LeetCode刷题-004两个排序数组的中位数

给定两个大小为 m 和 n 的有序数组 nums1 和 nums2 . 请找出这两个有序数组的中位数.要求算法的时间复杂度为 O(log (m+n)) . 示例 1:nums1 = [1, 3]nums2 = [2]中位数是 2.0 示例 2:nums1 = [1, 2]nums2 = [3, 4]中位数是 (2 + 3)/2 = 2.5 1 class Solution { 2 public: 3 double findMedianSortedArrays(vector<int>&

[LeetCode] 4. 两个排序数组的中位数

该题的难度分级是Hard,那么难在哪里呢?我们先来看题目. 给定两个大小为 m 和 n 的有序数组 nums1 和 nums2 . 请找出这两个有序数组的中位数.要求算法的时间复杂度为 O(log (m+n)) . 示例 1: nums1 = [1, 3] nums2 = [2] 中位数是 2.0 示例 2: nums1 = [1, 2] nums2 = [3, 4] 中位数是 (2 + 3)/2 = 2.5 当你看到要求的时间复杂度为O(log (m+n)),你想到了什么?没错,二分法. 从示

leetcode链表--13、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(log(m+n)),本题如果采用合并并排序两数组的方式,时间复杂度为O((m+n)*log(n+m))但是在牛客网上

两个排序数组求中位数

题目 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)). 思路 丢掉一个最小的,丢掉一个最大的 如果剩下小于等于两个数字,可以从中得到中位数 标准写法不是这样的,是通过寻找第K小的数来实现的 该方法的核心是将原问题转变成一个

[LeetCode]4. Median of Two Sorted Arrays两个排序数组合并后的中位数

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)). 解法一:不考虑时间复杂度限制在O(log(m+n)),则将两个数组遍历一遍即可以组合成一个排好序的数组,然后取数组的中位数即可,时间复杂度O(m+n): c

[LeetCode] 4. Median of Two Sorted Arrays 两个有序数组的中位数

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)). 求两个有序数组的中位数,并限制了时间复杂度O(log (m+n)),看到这个时间复杂度,自然想到用二分搜索Binary Search. 对于一个长度为n的已