Bloom Filter data structure
A Bloom filter is a space-efficient probabilistic data structure used to test
whether an element is a member of a set. False positive matches are possible,
but false negatives are not.
Checks if an element might be in the set
Returns true if the element might be present (could be false positive)
Returns false if the element is definitely not present
Bloom Filter data structure A Bloom filter is a space-efficient probabilistic data structure used to test whether an element is a member of a set. False positive matches are possible, but false negatives are not.
Example