LeetCode-寻找两个正序数组的中位数

给定两个大小分别为 m 和 n 的正序(从小到大)数组 nums1 和 nums2。请你找出并返回这两个正序数组的 中位数 。
算法的时间复杂度应该为 O(log (m+n)) 。

示例 1:
输入:nums1 = [1,3], nums2 = [2]
输出:2.00000
解释:合并数组 = [1,2,3] ,中位数 2

示例 2:
输入:nums1 = [1,2], nums2 = [3,4]
输出:2.50000
解释:合并数组 = [1,2,3,4] ,中位数 (2 + 3) / 2 = 2.5

提示:
nums1.length == m
nums2.length == n
0 <= m <= 1000
0 <= n <= 1000
1 <= m + n <= 2000
-106 <= nums1[i], nums2[i] <= 106

纯暴力解法,不知道为啥这个“困难”题直接暴力就能解出来

class Solution {
public:
    double findMedianSortedArrays(vector<int>& nums1, vector<int>& nums2) {
        int nums3[2010];
        int index1 = 0, index2 = 0;
        int index3 = 0;
        while(index1 < nums1.size() && index2 < nums2.size()){
            if(nums1[index1] <= nums2[index2]){
                nums3[index3] = nums1[index1];
                index1++;
            }
            else{
                nums3[index3] = nums2[index2];
                index2++;
            }
            index3++;
        }
        while(index1 < nums1.size()){
            nums3[index3] = nums1[index1];
            index1++;
            index3++;
        }
        while(index2 < nums2.size()){
            nums3[index3] = nums2[index2];
            index2++;
            index3++;
        }
        int sum = nums1.size() + nums2.size();
        if(sum % 2 == 0 ){
            return (nums3[sum / 2] + nums3[sum / 2 - 1]) * 1.0  / 2;
        }
        else
            return nums3[sum / 2] * 1.0 ;
    }
};
  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值