362.Design Hit Counter

Tags: [API], [data_structure], [request], [timestamp], [queue], [time_window], [bucket]

Com: {g}

Link: 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?


Better Solution: Buckets

class HitCounter(object):

    def __init__(self):
        """
        Initialize your data structure here.
        """
        self.time_buckets = [None for _ in xrange(300)]
        self.hits = [0 for _ in xrange(300)]


    def hit(self, timestamp):
        """
        Record a hit.
        @param timestamp - The current timestamp (in seconds granularity).
        :type timestamp: int
        :rtype: void
        """
        index = timestamp % 300
        if self.time_buckets[index] != timestamp:
            self.time_buckets[index] = timestamp
            self.hits[index] = 1
        else:
            self.hits[index] += 1


    def getHits(self, timestamp):
        """
        Return the number of hits in the past 5 minutes.
        @param timestamp - The current timestamp (in seconds granularity).
        :type timestamp: int
        :rtype: int
        """
        counter = 0
        for i in xrange(len(self.time_buckets)):
            if self.time_buckets[i] is None:
                continue
            if timestamp - self.time_buckets[i] < 300:
                counter += self.hits[i]

        return counter


# Your HitCounter object will be instantiated and called as such:
# obj = HitCounter()
# obj.hit(timestamp)
# param_2 = obj.getHits(timestamp)

Follow Up:

  • This solution is easy for scale.

Solution: Queue:

class HitCounter(object):

    def __init__(self):
        """
        Initialize your data structure here.
        """
        self.queue = collections.deque()


    def hit(self, timestamp):
        """
        Record a hit.
        @param timestamp - The current timestamp (in seconds granularity).
        :type timestamp: int
        :rtype: void
        """
        self.queue.append(timestamp)
        while self.queue and timestamp - self.queue[0] >= 60 * 5:
            self.queue.popleft()


    def getHits(self, timestamp):
        """
        Return the number of hits in the past 5 minutes.
        @param timestamp - The current timestamp (in seconds granularity).
        :type timestamp: int
        :rtype: int
        """
        while self.queue and timestamp - self.queue[0] >= 60 * 5:
            self.queue.popleft()

        return len(self.queue)



# Your HitCounter object will be instantiated and called as such:
# obj = HitCounter()
# obj.hit(timestamp)
# param_2 = obj.getHits(timestamp)

Revelation:

  • If the interval == 5 minutes, we also remove it from queue, based on the test case of this problem in leetcode.

Note:

  • Time complexity of initialization = O(1).
  • Time complexity of hit = O(n), n is the number of elements in the queue.
  • Time complexity of getHits = O(n), n is the number of elements in the queue.

Follow Up:

  • This solution is hard to scale.

results matching ""

    No results matching ""