写一个 RecentCounter 类来计算特定时间范围内最近的请求。
请你实现 RecentCounter 类:
RecentCounter() 初始化计数器,请求数为 0 。
int ping(int t) 在时间 t 添加一个新请求,其中 t 表示以毫秒为单位的某个时间,并返回过去 3000 毫秒内发生的所有请求数(包括新请求)。确切地说,返回在 [t-3000, t] 内发生的请求数。
保证 每次对 ping 的调用都使用比之前更大的 t 值。
class RecentCounter {
Queue queue;
public RecentCounter() {
queue = new ArrayDeque();
}
public int ping(int t) {
queue.add(t);
while( (t-queue.peek()) > 3000){
queue.poll();
}
return queue.size();
}
}
/**
* Your RecentCounter object will be instantiated and called as such:
* RecentCounter obj = new RecentCounter();
* int param_1 = obj.ping(t);
*/
执行用时:18 ms, 在所有 Java 提交中击败了96.32%的用户
内存消耗:49.1 MB, 在所有 Java 提交中击败了88.18%的用户
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)