美文网首页
362. Design Hit Counter

362. Design Hit Counter

作者: Jeanz | 来源:发表于2017-08-25 08:31 被阅读0次

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); 

一刷
题解:用两个数组times, hits,长度均为300(5分钟),每次index = timetamp % 300,
如果times[index]!=timestamp, hits[index]需要重新计数。每次getSum的时候,将hit数组累加一下,如果早于5分钟前,不加进去。

class HitCounter {
    private int[] times;
    private int[] hits;

    /** Initialize your data structure here. */
    public HitCounter() {
        times = new int[300];
        hits = new int[300];
    }
    
    /** Record a hit.
        @param timestamp - The current timestamp (in seconds granularity). */
    public void hit(int timestamp) {
        int index = timestamp%300;
        if(times[index]!=timestamp){
            times[index] = timestamp;
            hits[index] = 1;
        }else hits[index]++;
    }
    
    /** Return the number of hits in the past 5 minutes.
        @param timestamp - The current timestamp (in seconds granularity). */
    public int getHits(int timestamp) {
        int total = 0;
        for(int i=0; i<300; i++){
            if(timestamp-times[i]<300) total+=hits[i];
        }
        return total;
    }
}

/**
 * Your HitCounter object will be instantiated and called as such:
 * HitCounter obj = new HitCounter();
 * obj.hit(timestamp);
 * int param_2 = obj.getHits(timestamp);
 */

相关文章

  • 362. Design Hit Counter

    Solution Design a hit counter which counts the number of ...

  • 362. Design Hit Counter

    Design a hit counter which counts the number of hits rece...

  • 362. Design Hit Counter

    设计一个计数器,返回当前的时间戳(以s为单位),统计过去五分钟的点击数,点击实现。有可能存在一分钟点击多次的情况。...

  • 362.

    Ubuntu的Pypy3编译 编译时需要使用python2.7版本,临时把python3切换为python2。编译...

  • css的counter使用

    1、counter-reset 重置counter 计数的起始值 2、counter-incresment 递...

  • 06|Jest中的钩子函数

    Counter.js Counter.test.js

  • Tailwind Counter

    input counter button counter page avatar with name

  • collection常用2018-08-08

    from collections import Counter Counter(z).most_common() ...

  • Counter

    以字典的形式统计个数??

  • Counter

    Counter是dict字典的子类,Counter拥有类似字典的key键和value值,只不过Counter的键为...

网友评论

      本文标题:362. Design Hit Counter

      本文链接:https://www.haomeiwen.com/subject/dloydxtx.html