The-Bloom-filter
This example implements a Bloom filter in Python, a probabilistic data structure for fast membership testing. Items are added using multiple hash functions that set bits in a fixed-size array. Membership checks return definitely not present or possibly present, with false positives possible. The source code is part of the 127 algorithms collection.
The-Bloom-filter 최신버젼 다운로드
최종 버전 다운로드 (.zip)// repository documentation
Was this content helpful?
(0 ratings)
