Class representing a Count-Min Sketch data structure.
Creates an instance of CountMinSketch.
The width of the sketch (number of columns).
The depth of the sketch (number of hash functions).
Increments the count for a given key.
The key to increment.
Estimates the count for a given key.
The key to estimate.
The estimated count for the key.
Class representing a Count-Min Sketch data structure.