剑指Offer_刷题Day7

剑指Offer_刷题Day7

比较忙,只做了一道题。

Q1:如何得到一个数据流中的中位数?如果从数据流中读出奇数个数值,那么中位数就是所有数值排序之后位于中间的数值。如果从数据流中读出偶数个数值,那么中位数就是所有数值排序之后中间两个数的平均值。我们使用Insert()方法读取数据流,使用GetMedian()方法获取当前读取数据的中位数。

思路

  • 在init函数中,新建列表存储即可

Code

python

# -*- coding:utf-8 -*-
class Solution:
    def __init__(self):
        self.x=[]
     
    def Insert(self, num):
        self.x.append(num)
        self.x.sort()
        #print(self.x)
        # write code here
         
    def GetMedian(self,x):
        if len(self.x)%2==0:
            ind=len(self.x)/2
            return (self.x[ind]+self.x[ind-1])/2.0
        else:
            return self.x[len(self.x)//2]
        # write code here

猜你喜欢

转载自blog.csdn.net/weixin_43982484/article/details/89874083
今日推荐