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

Implement the MovingAverage class:
MovingAverage(int size) Initializes the object with the size of the window size.
double next(int val) Returns the moving average of the last size values of the stream.

求最后size个元素的平均值

思路:
用一个list将元素存储,每次取最后size个元素取平均值。

代码如下:

class MovingAverage {
    private int windowSize;
    private List<Integer> list;
    /** Initialize your data structure here. */
    public MovingAverage(int size) {
        windowSize=size;
        list=new ArrayList<Integer>();
    }
    
    public double next(int val) {
        list.add(val);
        if(list.size()<windowSize){
            int sum=0;
            for(int i=0; i<list.size(); i++){
                sum=sum+list.get(i);
            }
            return (double)sum/list.size();
        }
        else{
            int counter=0;
            int i=list.size()-1;
            int sum=0;
            while(counter<windowSize){
                sum=sum+list.get(i);
                i--;
                counter++;
            }
            return (double) sum/windowSize;
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值