题目
写一个 RecentCounter
类来计算特定时间范围内最近的请求。
请实现 RecentCounter
类:
RecentCounter()
初始化计数器,请求数为 0 。int ping(int t)
在时间t
添加一个新请求,其中t
表示以毫秒为单位的某个时间,并返回过去3000
毫秒内发生的所有请求数(包括新请求)。确切地说,返回在[t-3000, t]
内发生的请求数。
保证 每次对 ping
的调用都使用比之前更大的 t
值。
示例:
输入:
inputs = ["RecentCounter", "ping", "ping", "ping", "ping"]
inputs = [[], [1], [100], [3001], [3002]]
输出:
[null, 1, 2, 3, 3]
解释:
RecentCounter recentCounter = new RecentCounter();
recentCounter.ping(1); // requests = [1],范围是 [-2999,1],返回 1
recentCounter.ping(100); // requests = [1, 100],范围是 [-2900,100],返回 2
recentCounter.ping(3001); // requests = [1, 100, 3001],范围是 [1,3001],返回 3
recentCounter.ping(3002); // requests = [1, 100, 3001, 3002],范围是 [2,3002],返回 3
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
提示:
1 <= t <= 10
9- 保证每次对
ping
调用所使用的t
值都 严格递增 - 至多调用
ping
方法10
4 次
注意:本题与主站 933 题相同: https://leetcode-cn.com/problems/number-of-recent-calls/
题解
java
class RecentCounter {
/**
* 链表尾节点
*/
Node tail = new Node(0);
/**
* 链表头结点
*/
Node head = tail;
/**
* ping个数
*/
int size = 0;
public RecentCounter() {
}
public int ping(int t) {
int open = t - 3000;
// 当前请求时间添加到链表尾部
this.tail.next = new Node(t);
this.tail = this.tail.next;
this.size ++;
// 若当前链表头不在3000毫秒之内 则移动链表头
while (this.head.next != null && this.head.next.value < open) {
this.head = this.head.next;
this.size --;
}
return this.size;
}
/**
* 自定义链表
*/
static class Node {
int value;
Node next;
Node(int value) {
this.value = value;
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46