Introduction
Count min sketch is a probabilistic data structure that can guess the frequency of items in a stream. It is an improvement over Hyperloglog. While hyperloglog can estimate the number of unique items in a fixed amount of data, count min s...