A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 Miss_Allsunday 于 2017-6-17 08:27 编辑

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)).
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有两个排好序的数组nums1和nums2,各自是有m和n的大小。
找出两个数组的中位数,总共的运行复杂度应为O(log(m+n)).
举例:

nums1 = [1, 3]
nums2 = [2]
中位数 是 2.0

nums1 = [1, 2]
nums2 = [3, 4]
中位数是 (2 + 3)/2 = 2.5
你需要完成以下的函数:
double findMedianSortedArrays(int* nums1, int nums1Size, int* nums2, int nums2Size) {

}

这道题目的网址是:“https://leetcode.com/problems/median-of-two-sorted-arrays/#/description”



评分

参与人数 1黑马币 +5 收起 理由
zhao543 + 5 很给力!

查看全部评分

5 个回复

倒序浏览
占楼,待发答案。
回复 使用道具 举报
算法题很经典
回复 使用道具 举报
等待答案
回复 使用道具 举报
回复 使用道具 举报
QQ1002730074 发表于 2017-6-17 10:42
我怎么没看到答案

我还没来得及去做,官网上需要你们做出来再放上去测试,没有答案呢。
来自宇宙超级黑马专属苹果客户端来自宇宙超级黑马专属苹果客户端
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马