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 ...