【leetcode】933.最近的请求数

写一个 RecentCounter 类来计算最近的请求。

它只有一个方法:ping(int t),其中 t 代表以毫秒为单位的某个时间。

返回从 3000 毫秒前到现在的 ping 数。

任何处于 [t - 3000, t] 时间范围之内的 ping 都将会被计算在内,包括当前(指 t 时刻)的 ping。

保证每次对 ping 的调用都使用比之前更大的 t 值。

示例:

输入:inputs = ["RecentCounter","ping","ping","ping","ping"], inputs = [[],[1],[100],[3001],[3002]]
输出:[null,1,2,3,3]
链接:https://leetcode-cn.com/problems/number-of-recent-calls

解题思路:删除队头不符合条件的元素。

class RecentCounter {
    Queue<Integer> queue;
   
    public RecentCounter() {
         queue = new LinkedList<>(); 
    }
    
    public int ping(int t) {
       queue.add(t);
       while(queue.peek()<t-3000)
        queue.poll();
        return queue.size();
    }
}


 

发布了139 篇原创文章 · 获赞 93 · 访问量 5万+

猜你喜欢

转载自blog.csdn.net/weixin_43271086/article/details/105364723