LeetCode Design Hit Counter
Posted Dylan_Java_NYC
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Design Hit Counter相关的知识,希望对你有一定的参考价值。
原题链接在这里:https://leetcode.com/problems/design-hit-counter/description/
题目:
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:
HitCounter counter = new HitCounter(); // hit at timestamp 1. counter.hit(1); // hit at timestamp 2. counter.hit(2); // hit at timestamp 3. counter.hit(3); // get hits at timestamp 4, should return 3. counter.getHits(4); // hit at timestamp 300. counter.hit(300); // get hits at timestamp 300, should return 4. counter.getHits(300); // get hits at timestamp 301, should return 3. counter.getHits(301);
Follow up:
What if the number of hits per second could be very large? Does your design scale?
题解:
维护一个queue, 每次把新的timestamp加进queue里。
需要getHits时把queue首部5min之前的全部poll出去后return queue.size().
Time Complexity: hit O(1), getHits O(queue.size()).
Space: queue.size().
AC Java:
1 public class HitCounter { 2 3 /** Initialize your data structure here. */ 4 LinkedList<Integer> que; 5 public HitCounter() { 6 que = new LinkedList<Integer>(); 7 } 8 9 /** Record a hit. 10 @param timestamp - The current timestamp (in seconds granularity). */ 11 public void hit(int timestamp) { 12 que.add(timestamp); 13 } 14 15 /** Return the number of hits in the past 5 minutes. 16 @param timestamp - The current timestamp (in seconds granularity). */ 17 public int getHits(int timestamp) { 18 while(!que.isEmpty() && timestamp - que.peek() >= 300){ 19 que.poll(); 20 } 21 return que.size(); 22 } 23 } 24 25 /** 26 * Your HitCounter object will be instantiated and called as such: 27 * HitCounter obj = new HitCounter(); 28 * obj.hit(timestamp); 29 * int param_2 = obj.getHits(timestamp); 30 */
以上是关于LeetCode Design Hit Counter的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode 362: Design Hit Counter
[LeetCode] Design Hit Counter 设计点击计数器