Moving Average from Data Stream LT346
- MovingAverage m = new MovingAverage(3);
- m.next(1) = 1
- m.next(10) = (1 + 10) / 2
- m.next(3) = (1 + 10 + 3) / 3
- m.next(5) = (10 + 3 + 5) / 3
- public class MovingAverage {
- private Queue<Integer> queue;
- private int capacity;
- private double sum;
- /** Initialize your data structure here. */
- public MovingAverage(int size) {
- queue = new ArrayDeque<>();
- capacity = size;
- sum = 0;
- }
- public double next(int val) {
- if(queue.size() == capacity) {
- sum -= queue.poll();
- }
- queue.offer(val);
- sum += val;
- return sum/queue.size();
- }
- public static void main(String[] args) {
- int[] nums = {1, 10, 3, 5};
- MovingAverage movingAverage = new MovingAverage(3);
- for(int num: nums) {
- System.out.println(movingAverage.next(num));
- }
- }
- }
python:
- import queue
- class MovingAverage:
- def __init__(self, capacity):
- self.capacity = capacity
- self.sum = 0
- self.window = queue.Queue(capacity)
- def next(self, num):
- if self.window.full():
- self.sum -= self.window.get()
- self.sum += num
- self.window.put(num)
- return self.sum/self.window.qsize()
- def test():
- test_data = [1, 10, 3, 5]
- test_subject = MovingAverage(3)
- for num in test_data:
- print (test_subject.next(num))
- if __name__ == '__main__':
- test()
Moving Average from Data Stream LT346的更多相关文章
- 346. Moving Average from Data Stream
/* * 346. Moving Average from Data Stream * 2016-7-11 by Mingyang * 这里注意的就是(double) sum / count * su ...
- Moving Average from Data Stream
Given a stream of integers and a window size, calculate the moving average of all integers in the sl ...
- LeetCode Moving Average from Data Stream
原题链接在这里:https://leetcode.com/problems/moving-average-from-data-stream/ 题目: Given a stream of integer ...
- LeetCode 346. Moving Average from Data Stream (数据流动中的移动平均值)$
Given a stream of integers and a window size, calculate the moving average of all integers in the sl ...
- [leetcode]346. Moving Average from Data Stream滑动窗口平均值
Given a stream of integers and a window size, calculate the moving average of all integers in the sl ...
- 346. Moving Average from Data Stream数据窗口流中位数的数据结构设计
[抄题]: Given a stream of integers and a window size, calculate the moving average of all integers in ...
- Moving Average from Data Stream -- LeetCode
Given a stream of integers and a window size, calculate the moving average of all integers in the sl ...
- [LeetCode] 346. Moving Average from Data Stream 从数据流中移动平均值
Given a stream of integers and a window size, calculate the moving average of all integers in the sl ...
- 【LeetCode】346. Moving Average from Data Stream 解题报告(C++)
作者: 负雪明烛 id: fuxuemingzhu 个人博客:http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 队列 日期 题目地址:https://leetcode ...
随机推荐
- springcloud eureka.instance
1.在springcloud中服务的 Instance ID 默认值是: ${spring.cloud.client.hostname}:${spring.application.name}:${sp ...
- Realtime Rendering 5
[Real Time Rendering 5] 1.In radiometry, the function that is used to describe how a surface reflect ...
- serv-U使用
该软件是设置ftp服务器的 可以百度查询ftp服务器安装攻略,如 https://jingyan.baidu.com/article/cb5d6105c00bba005c2fe0ca.html 问题: ...
- js实现右击
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <tit ...
- this.$router
router.go(n)这个方法的参数是一个整数,意思是在 history 记录中向前或者后退多少步,类似 window.history.go(n) router.push(location)想要导航 ...
- map按照value值排序
map可以实现key到value的一一映射,如果是一对多的,我们可以使用multimap multimap<int,int>mp; mp.insert(make_pair(first,se ...
- c#的Boolean.Parse用法
bool val; string input; input = bool.TrueString; val = bool.Parse(input); Console.WriteLine("'{ ...
- Centos7安装Wkhtmltopdf -- nodejs将html转pdf
安装wkhtmltopdf wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.1 ...
- [Java学习]面向对象-抽象类;接口
抽象类 语法 public abstract class A{ } 定义 抽象类无法实例化.但抽象类有构造方法,在子类创建对象时用. 抽象类中可以定义抽象方法public abstract void ...
- redis(三)积累-基本的取值和设值
1. 先把redis的连接池拿出来, JedisPool pool=new JedisPool(new JedisPoolConfig(),"127.0.0.1") Jedis ...