0

How can a bloom filter that uses m bits be reduced into a bloom filter with (m-1) bits, without using the whole dictionary? I've been stuck on this question for a long time and any help would be appreciated.

1 Answers1

0

There is a B.F trick known as halving a B.F When halving, the new B.F will only require m/2 bits which is enough for 2^(b-1)

Joe N
  • 16
  • Thanks a lot Joe for the answer. I've searched about the halving a Bloom Filter operation after watching your answer and it was really helpful. And one last request, where can I get some real good theory about this Halving technique, like every where I go, I find only one line about it. Once again, I would like to appreciate you for being kind enough to help me out here. – Srivatsav Palli May 12 '21 at 12:27