Tagged Questions
4
votes
2answers
228 views
compact data structure like set
i am looking for a specific data structure, but i forgot its name. if i knew the name it would be trivial, i would just look it up in wikipedia :)
basically, it is like a set - except you cannot ...
2
votes
2answers
48 views
Filter for range queries on a set
We have a set S of keys.
For membership queries (is k in S?), bloom filters often help us quickly determine that a key is not in the set.
How can we filter range queries (is there a key from the ...
2
votes
2answers
106 views
How do bloom filter implementations keep clean?
Since they fill up and the percentage of false positives increase, what are some of the techniques used to keep them from saturating? It seems like you cannot empty out bits, since that would make an ...
1
vote
1answer
64 views
Bloom filter design
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 ...
0
votes
1answer
116 views
How to find out the false positive rate of one implementation of bloom filter algorithm?
How can I find the false positive rate of one implementation of bloom filter algorithm?