0
4.7kviews
Explain algorithm for Bloom Filter.
1 Answer
0
77views

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 4 others joined a min ago.

Please log in to add an answer.