Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 457 Bytes

Bloom filter.md

File metadata and controls

6 lines (5 loc) · 457 Bytes
  1. Bloom filter; a space-efficient probabilistic data structure that is used to test whether an element is a member of a set^[https://en.wikipedia.org/wiki/Bloom_filter]
    1. false positive matches are possible, but false negatives are not – in other words, a query returns either "possibly in set" or "definitely not in set"
    2. e.g. Google indexing URLs^[Algorithms to Live By: The Computer Science of Human Decisions, p. 205]

related

  1. [[algorithm]]