Given a stream of integers and a window size, calculate the moving average of all integers in the sliding window.
For example,
  1. MovingAverage m = new MovingAverage(3);
  2. m.next(1) = 1
  3. m.next(10) = (1 + 10) / 2
  4. m.next(3) = (1 + 10 + 3) / 3
  5. m.next(5) = (10 + 3 + 5) / 3
 
Idea 1. Sliding window, we need to store elements and poll out the first element when reaching the window size, it looks like queue strucutre fits our needs, it's first-in-first-out.
Time complexity: O(n)
Space complexity: O(k) k is the size of the sliding window
  1. public class MovingAverage {
  2. private Queue<Integer> queue;
  3. private int capacity;
  4. private double sum;
  5. /** Initialize your data structure here. */
  6. public MovingAverage(int size) {
  7. queue = new ArrayDeque<>();
  8. capacity = size;
  9. sum = 0;
  10. }
  11.  
  12. public double next(int val) {
  13. if(queue.size() == capacity) {
  14. sum -= queue.poll();
  15. }
  16. queue.offer(val);
  17. sum += val;
  18. return sum/queue.size();
  19. }
  20.  
  21. public static void main(String[] args) {
  22. int[] nums = {1, 10, 3, 5};
  23. MovingAverage movingAverage = new MovingAverage(3);
  24. for(int num: nums) {
  25. System.out.println(movingAverage.next(num));
  26. }
  27. }
  28. }

python:

  1. import queue
  2.  
  3. class MovingAverage:
  4. def __init__(self, capacity):
  5. self.capacity = capacity
  6. self.sum = 0
  7. self.window = queue.Queue(capacity)
  8.  
  9. def next(self, num):
  10. if self.window.full():
  11. self.sum -= self.window.get()
  12.  
  13. self.sum += num
  14. self.window.put(num)
  15. return self.sum/self.window.qsize()
  16.  
  17. def test():
  18. test_data = [1, 10, 3, 5]
  19. test_subject = MovingAverage(3)
  20. for num in test_data:
  21. print (test_subject.next(num))
  22.  
  23. if __name__ == '__main__':
  24. test()

Moving Average from Data Stream LT346的更多相关文章

  1. 346. Moving Average from Data Stream

    /* * 346. Moving Average from Data Stream * 2016-7-11 by Mingyang * 这里注意的就是(double) sum / count * su ...

  2. Moving Average from Data Stream

    Given a stream of integers and a window size, calculate the moving average of all integers in the sl ...

  3. LeetCode Moving Average from Data Stream

    原题链接在这里:https://leetcode.com/problems/moving-average-from-data-stream/ 题目: Given a stream of integer ...

  4. 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 ...

  5. [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 ...

  6. 346. Moving Average from Data Stream数据窗口流中位数的数据结构设计

    [抄题]: Given a stream of integers and a window size, calculate the moving average of all integers in ...

  7. 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 ...

  8. [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 ...

  9. 【LeetCode】346. Moving Average from Data Stream 解题报告(C++)

    作者: 负雪明烛 id: fuxuemingzhu 个人博客:http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 队列 日期 题目地址:https://leetcode ...

随机推荐

  1. springcloud eureka.instance

    1.在springcloud中服务的 Instance ID 默认值是: ${spring.cloud.client.hostname}:${spring.application.name}:${sp ...

  2. Realtime Rendering 5

    [Real Time Rendering 5] 1.In radiometry, the function that is used to describe how a surface reflect ...

  3. serv-U使用

    该软件是设置ftp服务器的 可以百度查询ftp服务器安装攻略,如 https://jingyan.baidu.com/article/cb5d6105c00bba005c2fe0ca.html 问题: ...

  4. js实现右击

    <!DOCTYPE html> <html>     <head>  <meta charset="UTF-8">  <tit ...

  5. this.$router

    router.go(n)这个方法的参数是一个整数,意思是在 history 记录中向前或者后退多少步,类似 window.history.go(n) router.push(location)想要导航 ...

  6. map按照value值排序

    map可以实现key到value的一一映射,如果是一对多的,我们可以使用multimap multimap<int,int>mp; mp.insert(make_pair(first,se ...

  7. c#的Boolean.Parse用法

    bool val; string input; input = bool.TrueString; val = bool.Parse(input); Console.WriteLine("'{ ...

  8. Centos7安装Wkhtmltopdf -- nodejs将html转pdf

    安装wkhtmltopdf wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.1 ...

  9. [Java学习]面向对象-抽象类;接口

    抽象类 语法 public abstract class A{ } 定义 抽象类无法实例化.但抽象类有构造方法,在子类创建对象时用. 抽象类中可以定义抽象方法public abstract void ...

  10. redis(三)积累-基本的取值和设值

    1.  先把redis的连接池拿出来, JedisPool pool=new JedisPool(new JedisPoolConfig(),"127.0.0.1") Jedis ...