leetcode -- Algorithms -- 4_ Median of Two Sorted Arrays

Posted ReedyLi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode -- Algorithms -- 4_ Median of Two Sorted Arrays相关的知识,希望对你有一定的参考价值。

00

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)).

 

class Solution(object):
    def findMedianSortedArrays(self, nums1, nums2):
        new_list = []
        median = 0.0
        l = 0

        new_list = nums1 + nums2
        l = len(new_list)
        new_list.sort()
        

        if (l%2) == 0:
            l = int(l/2)
            median = float((new_list[l-1]+new_list[l])/2)

        else:
            l = l//2
            median = new_list[l]
           
        return median

 

Solution with Algorithms mind:

def median(A, B):
    m, n = len(A), len(B)
    if m > n:
        A, B, m, n = B, A, n, m
    if n == 0:
        raise ValueError

    imin, imax, half_len = 0, m, (m + n + 1) / 2
    while imin <= imax:
        i = (imin + imax) / 2
        j = half_len - i
        if i < m and B[j-1] > A[i]:
            # i is too small, must increase it
            imin = i + 1
        elif i > 0 and A[i-1] > B[j]:
            # i is too big, must decrease it
            imax = i - 1
        else:
            # i is perfect

            if i == 0: max_of_left = B[j-1]
            elif j == 0: max_of_left = A[i-1]
            else: max_of_left = max(A[i-1], B[j-1])

            if (m + n) % 2 == 1:
                return max_of_left

            if i == m: min_of_right = B[j]
            elif j == n: min_of_right = A[i]
            else: min_of_right = min(A[i], B[j])

            return (max_of_left + min_of_right) / 2.0

 

More details :

https://leetcode.com/articles/median-of-two-sorted-arrays/

 

以上是关于leetcode -- Algorithms -- 4_ Median of Two Sorted Arrays的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode]-algorithms-String to Integer (atoi)

[LeetCode]-algorithms-Longest Palindromic Substring

[LeetCode]-algorithms-Longest Substring Without Repeating Characters

#leetcode-algorithms-4 Median of Two Sorted Arrays

leetcode-algorithms-92. Reverse Linked List II

leetcode-algorithms-109. Convert Sorted List to Binary Search Tree