0
2.3kviews
Explain blooms filter and applications of bloom filter
1 Answer
written 2.6 years ago by |
Bloom Filter :-
Bloom Filter is a probabilistic data structure which is used to search an element within a large set of elements in constant time that is O(K) where K is the number of hash functions being used in Bloom Filter.
A Bloom filter is a data structure designed to tell you, rapidly and memory-efficiently, whether an element is present in a set.
The Bloom Filter is useful in cases where -
The applications of Bloom Filter are :-