leetcode:933. 最近的请求次数

题目来源

933. 最近的请求次数

题目描述

leetcode:933. 最近的请求次数_第1张图片

题目解析

这道题说人话就是:t代表这个员工的工号,每次新员工t加入q公司前先把工号小于t -3000的老家伙都辞退,然后再让t入职,统计q公司现有几个员工

class RecentCounter {
    private  Queue<Integer> queue  = new LinkedList<Integer>();
    public RecentCounter() {
    }

    public int ping(int t) {
        queue.offer(t);
        while (!queue.isEmpty() && queue.peek() < t - 3000){
            queue.poll();
        }
        return queue.size();
    }
}

在这里插入图片描述
就是考队列

滑动窗口

你可能感兴趣的:(算法与数据结构,leetcode,数据结构,c++)