LeeCode 寻找两个正序数组的中位数

Posted DennisJu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeeCode 寻找两个正序数组的中位数相关的知识,希望对你有一定的参考价值。

刷到这不得不对自己的大意说两句了,每次思路都是对的,因为最近写dart写得多,对java关键字盲敲总是出现小细节的问题,导致第一次提交测试用例部分通过不了,提交成功率就被这些小细节打败了,反思中~

class Solution 
    public double findMedianSortedArrays(int[] nums1, int[] nums2) 
     //解题思路:拿到中间位置的数值,奇数长度length/2 + 0.5的位置,偶数长度是length/2+0.5 length/2 - 0.5位置的数除2
     //1、先拿到将当前两个数组的长度求和作为除数备用
     //2、因为数组是正序的尝试将数组比对放到新数组中构成新有序数组,数组长度为总长度的1/2 + 1即可
     //3、特殊临界点的处理
        int sumLength = nums1.length + nums2.length;
        boolean isEvenLength = (sumLength % 2 == 0);
        int aimLength = (int)Math.floor(sumLength/2.0+1);
        int [] resultNum3 = new int[aimLength];
        int index = 0;
        int temp1 = 0;
        int temp2 = 0;
        int index1 = 0;
        int index2 = 0;
        while (index < aimLength)
            //TODO 交替比对两个数组内容大小直到aimLength
            if (index1 < nums1.length)
                temp1 = nums1[index1];
            else 
                resultNum3[index] = nums2[index2];
                index2++;
                index++;
                continue;
            

            if (index2 < nums2.length)
                temp2 = nums2[index2];
            else 
                resultNum3[index] = nums1[index1];
                index1++;
                index++;
                continue;
            

            boolean isNum1OverNum2 = temp1 > temp2;
            if (isNum1OverNum2)
                resultNum3[index] = temp2;
                index2++;
            else 
                resultNum3[index] = temp1;
                index1++;
            
            index++;
        
        //TODO 根据奇数偶数长度计算中位数
        double result = isEvenLength ? (resultNum3[aimLength-1] + resultNum3[aimLength-2]) / 2.0: resultNum3[aimLength-1];
        return result;
    

 

以上是关于LeeCode 寻找两个正序数组的中位数的主要内容,如果未能解决你的问题,请参考以下文章

LeeCode 寻找两个正序数组的中位数

LeeCode 寻找两个正序数组的中位数

4.寻找两个正序数组的中位数

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

Leetcode 4. 寻找两个正序数组的中位数-困难(带图)

Hard | LeetCode 4. 寻找两个正序数组的中位数 | 二分法