标签:str ini queue from instant called float python +=
使用了queue
from queue import Queue class MovingAverage: def __init__(self, size: int): """ Initialize your data structure here. """ self.que = Queue() self.size = size self.windowSum = 0 def next(self, val: int) -> float: if self.que.qsize() == self.size: self.windowSum -= self.que.get() self.que.put(val) self.windowSum += val return self.windowSum / self.que.qsize() # Your MovingAverage object will be instantiated and called as such: # obj = MovingAverage(size) # param_1 = obj.next(val)
[leetcode]Moving Average from Data Stream
标签:str ini queue from instant called float python +=
原文地址:https://www.cnblogs.com/lautsie/p/12249345.html