zoukankan      html  css  js  c++  java
  • LeetCode 362. 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  */

    类似Logger Rate Limiter

  • 相关阅读:
    Expression 学习 [1]
    代码格式化工具 CodeMaid
    深度复制
    Linq to entity 笔记
    Linq To SQL Update Delete
    sphinx 安装 笔记
    过滤HTML 脚本 样式 避免样式冲突
    TFS 文件显示 未下载 却无法下载到本地 文件路径版定问题解决
    生成实体文件 需要用到的SQL 语句
    应用程序 数据缓存
  • 原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/6197070.html
Copyright © 2011-2022 走看看