leetcode 两个排序的中位数 python
Posted 稀里糊涂林老冷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 两个排序的中位数 python相关的知识,希望对你有一定的参考价值。
两个排序数组的中位数
给定两个大小为 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
两个列表合并一下排个序, 然后再找中位数
奇数个元素就返回中间元素
偶数个元素返回中间两个的平均数
1 class Solution:
2 def findMedianSortedArrays(self, nums1, nums2):
3 """
4 :type nums1: List[int]
5 :type nums2: List[int]
6 :rtype: float
7 """
8 nums = nums1 + nums2
9 nums.sort()
10 l = len(nums)
11 if l % 2 == 0:
12 return (nums[int(l/2)] + nums[int(l/2-1)])/ 2
13 else:
14 return nums[int((l-1)/2)]
以上是关于leetcode 两个排序的中位数 python的主要内容,如果未能解决你的问题,请参考以下文章