题目描述:
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)).
You may assume nums1 and nums2 cannot be both empty.
样例:
1 | nums1 = [1, 3] |
1 | nums1 = [1, 2] |
题意:
给出两个排好序的数组,找出这两个数组中的中位数。
思路:
其实蚊子的思路,就是直接暴力,就用一个 vector 存储重新生成的排好序的数组,然后直接就找到了中位数了,这道题之所以会被标为 hard 估计是因为题目中的 O(log(m +n)) 的时间复杂度叭,不过蚊子肯定会找到这么少的时间复杂度的,那现在蚊子就暂时将蠢蠢的做法贴出来叭。
1 | class Solution { |
Rumtime:44ms Memory:22.2MB
好吧,蚊子还是别人的代码贴上来吧,嘤嘤嘤
1 | class Solution { |