I wanted to know where I can find an implementation of the Bloom filter, with some explanation about the choice of the hash functions.

Additionally I have the following questions:
1) the Bloom filter is known to have false positives. Is it possible to reduce them by using two filters, one for used elements, and one for non-used elements (assuming the set is finite and known a-priori) and compare the two?
2) are there other similar algorithms in the CS literature?

link|improve this question

65% accept rate
2  
bloom filters are often used when the range of possible elements is very large. One example is to store if a certain query is in a search engine's cache. Thus, in most cases [I know of], you cannot store a filter of "non used elements", since those are infinte. – amit Jan 8 at 9:14
true, but I was referring to the case where the set of elements is finite, and known. It may be weird but my application is totally different. – Bob Jan 11 at 1:39
feedback

1 Answer

up vote 1 down vote accepted

My intuition is that you'll get a better reduction in false positives by using the additional space that the anti-filter would have occupied to just expand the positive filter.

As for resources, the papers referenced for March 8 from my course syllabus would be useful.

link|improve this answer
very good reference. Thanks! – Bob Jan 10 at 22:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.