LeetCode 4. Median of Two Sorted Arrays 两个排序数组的中位数

要求

给定两个大小为 m 和 n 的有序数组 nums1 和 nums2 。
请找出这两个有序数组的中位数。要求算法的时间复杂度为 O(log (m+n)) 。
你可以假设 nums1 和 nums2 均不为空。

示例 1:
nums1 = [1, 3]
nums2 = [2]

中位数是 2.0
示例 2:
nums1 = [1, 2]
nums2 = [3, 4]

中位数是 (2 + 3)/2 = 2.5

相关代码

class Solution(object):
    def findMedianSortedArrays(self, nums1, nums2):
        nums3 = sorted(nums1 + nums2)
        if len(nums3) % 2.0 == 0:
            return (nums3[len(nums3) / 2 - 1] + nums3[len(nums3) / 2]) / 2.0
        else:
            return nums3[int(round(len(nums3) / 2))]

心得体会

# 取余
print 5 % 2
# 向下取整
print 5 // 2.0
print int(5 / 2.0)
# 向上取整
print round(5 / 2.0)
print math.ceil(5 / 2.0)  # 需要import math

你可能感兴趣的:(LeetCode 4. Median of Two Sorted Arrays 两个排序数组的中位数)