0
2.5kviews
Explain blooms filter and applications of bloom filter
1 Answer
| written 3.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 …