您的位置:首页 > 其它

LeetCode之Median of Two Sorted Arrays

2018-03-01 10:53 274 查看
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)).Example 1:
nums1 = [1, 3]
nums2 = [2]

The median is 2.0
Example 2:
nums1 = [1, 2]
nums2 = [3, 4]

The median is (2 + 3)/2 = 2.5
解答链接为:https://leetcode.com/problems/median-of-two-sorted-arrays/solution/同时,该题的变形还有1. 求两个长度相同的有序整型数组的上中位数,二分法求解2. 求两个有序整型数组的第K小的数
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: