leetcode 算法題346 (簡單086) 數據流中的移動平均值

leetcode 算法題346 (簡單086) 數據流中的移動平均值 題目介紹 給定一個整數數據流和一個窗口大小,根據該滑動窗口的大小,計算其全部整數的移動平均值。 示例 MovingAverage m = new MovingAverage(3); m.next(1) = 1 m.next(10) = (1 + 10) / 2 m.next(3) = (1 + 10 + 3) / 3 m.nex
相關文章
相關標籤/搜索