0
16kviews
Explain Bloom Filter with the help of an example.
1 Answer
5
1.0kviews

A Bloom filter consists of:

  1. An array of n bits, initially all 0’s.
  2. A collection of hash functions h1, h2, . . . , hk. Each hash function maps “key” values to n buckets, corresponding to the n bits of the bit-array.
  3. A set S of m key values.

The …

Create a free account to keep reading this post.

and 3 others joined a min ago.

Please log in to add an answer.