mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-04 05:44:35 +00:00
[PR #1209] [CLOSED] Adding bloom filters and counting bloom filters to data structures #1798
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/TheAlgorithms/C/pull/1209
Author: @ericbreyer
Created: 2/5/2023
Status: ❌ Closed
Base:
master← Head:master📝 Commits (10+)
2505528Adding bloom filters and counting bloom filters to data structuresf28b778Adding bloom filters and counting bloom filters to data structures8f7d593Cleaning and implementing suggestions from https://github.com/TheAlgorithms/C/pull/1209f24bbeaImplementing suggestions from https://github.com/TheAlgorithms/C/pull/1209ca551b3updating DIRECTORY.mda6d7e7fMerge branch 'TheAlgorithms:master' into master631404eupdating DIRECTORY.md1d5dec9Implementing suggestions from https://github.com/TheAlgorithms/C/pull/120937778e6Merge branch 'master' of https://github.com/ericbreyer/C3897978More suggestions from https://github.com/TheAlgorithms/C/pull/1209📊 Changes
12 files changed (+844 additions, -5 deletions)
View changed files
➕
.DS_Store(+0 -0)📝
.vscode/settings.json(+23 -5)📝
DIRECTORY.md(+12 -0)➕
data_structures/.DS_Store(+0 -0)➕
data_structures/bloom_filters/bloom_filter/Makefile(+25 -0)➕
data_structures/bloom_filters/bloom_filter/bloom_filter.c(+161 -0)➕
data_structures/bloom_filters/bloom_filter/bloom_filter.h(+90 -0)➕
data_structures/bloom_filters/bloom_filter/main.c(+71 -0)➕
data_structures/bloom_filters/counting_bloom_filter/Makefile(+25 -0)➕
data_structures/bloom_filters/counting_bloom_filter/counting_bloom_filter.c(+232 -0)➕
data_structures/bloom_filters/counting_bloom_filter/counting_bloom_filter.h(+109 -0)➕
data_structures/bloom_filters/counting_bloom_filter/main.c(+96 -0)📄 Description
Description of Change
Adding bloom filters and counting bloom filters to data structures
feat: Bloom Filter Data Structure
feat: Counting Bloom Filter Data Structure
References
Checklist
Added description of change
Added file name matches File name guidelines
Added tests and example, test must pass
Relevant documentation/comments is changed or added
PR title follows semantic commit guidelines
Search previous suggestions before making a new one, as yours may be a duplicate.
I acknowledge that all my contributions will be made under the project's license.
Notes:
Adding bloom filters and counting bloom filters to data structures
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.