-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathDesign_Hit_Counter.cpp
34 lines (31 loc) · 993 Bytes
/
Design_Hit_Counter.cpp
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
class HitCounter {
#define THRESHOLD 300
queue <int> hitQueue;
public:
/** Initialize your data structure here. */
HitCounter() {
hitQueue = queue <int> ();
}
/** Record a hit.
@param timestamp - The current timestamp (in seconds granularity). */
void hit(int timestamp) {
while(!hitQueue.empty() and hitQueue.front() <= timestamp - THRESHOLD) {
hitQueue.pop();
}
hitQueue.push(timestamp);
}
/** Return the number of hits in the past 5 minutes.
@param timestamp - The current timestamp (in seconds granularity). */
int getHits(int timestamp) {
while(!hitQueue.empty() and hitQueue.front() <= timestamp - THRESHOLD) {
hitQueue.pop();
}
return (int)hitQueue.size();
}
};
/**
* Your HitCounter object will be instantiated and called as such:
* HitCounter obj = new HitCounter();
* obj.hit(timestamp);
* int param_2 = obj.getHits(timestamp);
*/