mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-02 18:23:06 +08:00
feat: add Bloom Filter to data_structures (#1953)
* feat: add bloom_filter.c(bloom filter and bitset for it) * updating DIRECTORY.md * docs: add comments to bloom_filter * test: add tests and minor fixes * docs: more common docs * fix: clang-tidy warnings fix * fix: clang-forma - minor fixes * fix: line-space and better naming in hashStr * updating DIRECTORY.md * fix: apply suggestions from code review Co-authored-by: David Leal <halfpacho@gmail.com> * fix: test_bitset was moved before main. Changed description for template T parameter * Apply suggestions from code review Co-authored-by: David Leal <halfpacho@gmail.com> * fix: namespace fix * fix: minor style fix * Apply suggestions from code review Co-authored-by: David Leal <halfpacho@gmail.com> * fix: params names was removed from prototypes * Update data_structures/bloom_filter.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * docs: minor improvements/fixes Co-authored-by: David <Panquesito7@users.noreply.github.com> Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
@@ -41,6 +41,7 @@
|
||||
* [Binary Search Tree](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/binary_search_tree.cpp)
|
||||
* [Binary Search Tree2](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/binary_search_tree2.cpp)
|
||||
* [Binaryheap](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/binaryheap.cpp)
|
||||
* [Bloom Filter](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/bloom_filter.cpp)
|
||||
* [Circular Queue Using Linked List](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/circular_queue_using_linked_list.cpp)
|
||||
* Cll
|
||||
* [Cll](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/cll/cll.cpp)
|
||||
|
||||
Reference in New Issue
Block a user