362 Design Hit Counter
362. Design Hit Counter
1. Question
Design a hit counter which counts the number of hits received in the past 5 minutes.
Each function accepts a timestamp parameter (in seconds granularity) and you may assume that calls are being made to the system in chronological order (ie, the timestamp is monotonically increasing). You may assume that the earliest timestamp starts at 1.
It is possible that several hits arrive roughly at the same time.
Example:
Follow up: What if the number of hits per second could be very large? Does your design scale?
2. Implementation
3. Time & Space Complexity
时间复杂度: hit(): O(1), getHits(): O(1)
空间复杂度: O(n),n是第一次call hit()的次数
Last updated
Was this helpful?