Write a classRecentCounter
to count recent requests.
It has only one method: ping(int t)
, where t represents some time in milliseconds.
Return the number ofping
s that have been made from 3000 milliseconds ago until now.
Any ping with time in[t - 3000, t]
will count, including the current ping.
It is guaranteed that every call toping
uses a strictly larger value of t
than before.
Example 1:
Input: inputs = ["RecentCounter","ping","ping","ping","ping"], inputs = [[],[1],[100],[3001],[3002]]
Output: [null,1,2,3,3]
Note:
- Each test case will have at most
10000
calls toping
. - Each test case will call
ping
with strictly increasing values oft
. - Each call to ping will have
1 <= t <= 10^9
.
这个题也比较直接,用一个queue就可以了,每次把最新的ping加入队列,去掉早于t - 3000的时间,输出queue size
class RecentCounter {
private LinkedList<Integer> queue;
public RecentCounter() {
this.queue = new LinkedList<Integer>();
}
public int ping(int t) {
queue.offer(t);
while(queue.peek() < t - 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);
*/