hkucuk

Category: Data-structures

Bloom Filter [Data Structures]

June 14, 2023 • ☕️☕️ 8 min read • 🏷 computer, software, algorithm, data-structures

The Bloom Filter is a composable probability-based data structure that is often used within data structures and is particularly used to speed up data searches. This data structure is used to check the presence (existence or non-existence) of elements quickly and with low memory usage.

1