两个正序数组的中位数

//给定两个大小为 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
// 
//
// 示例 3: 
//
// 输入:nums1 = [0,0], nums2 = [0,0]
//输出:0.00000
// 
//
// 示例 4: 
//
// 输入:nums1 = [], nums2 = [1]
//输出:1.00000
// 
//
// 示例 5: 
//
// 输入:nums1 = [2], nums2 = []
//输出:2.00000
// 
//
// 
//
// 提示: 
//
// 
// nums1.length == m 
// nums2.length == n 
// 0 <= m <= 1000 
// 0 <= n <= 1000 
// 1 <= m + n <= 2000 
// -106 <= nums1[i], nums2[i] <= 106 
// 
// Related Topics 数组 二分查找 分治算法 
// 👍 3484 👎 0


//时间复杂度 O(m+n)
class Solution {
    public double findMedianSortedArrays(int[] nums1, int[] nums2) {
        int[] ints = new int[nums1.length + nums2.length];
        int i = 0;
        int j = 0;
        int index = 0;
        while (i< nums1.length && j<nums2.length){
            ints[index++] = nums1[i]<=nums2[j]?nums1[i++]:nums2[j++];
        }
        while (i < nums1.length){
            ints[index++] = nums1[i++];
        }

        while (j < nums2.length){
            ints[index++] = nums2[j++];
        }
        return ints.length%2 == 1 ? ints[ints.length/2]:(ints[ints.length/2-1]+ints[ints.length/2])*0.5;
    }
}
//leetcode submit region end(Prohibit modification and deletion)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值