[PR #1260] [CLOSED] Adding bloom filters and counting bloom filters to data structures #1857

Open
opened 2026-01-29 15:25:26 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1260
Author: @ericbreyer
Created: 5/17/2023
Status: Closed

Base: masterHead: master


📝 Commits (10+)

📊 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

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

previously #1209 but went stale because no maintainer checked

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
  • 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.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/1260 **Author:** [@ericbreyer](https://github.com/ericbreyer) **Created:** 5/17/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`2505528`](https://github.com/TheAlgorithms/C/commit/25055289f57ac76380d217c1b01f2cf00ac628dd) Adding bloom filters and counting bloom filters to data structures - [`f28b778`](https://github.com/TheAlgorithms/C/commit/f28b778412ff754dda8453c09f07ef0f0c1dc8ba) Adding bloom filters and counting bloom filters to data structures - [`8f7d593`](https://github.com/TheAlgorithms/C/commit/8f7d5939d45898dcabd01e03a589d3e4e8138ca9) Cleaning and implementing suggestions from https://github.com/TheAlgorithms/C/pull/1209 - [`f24bbea`](https://github.com/TheAlgorithms/C/commit/f24bbea6d9e918ce8ef86ffb73f2d2fee1146f82) Implementing suggestions from https://github.com/TheAlgorithms/C/pull/1209 - [`ca551b3`](https://github.com/TheAlgorithms/C/commit/ca551b31a26b40ae62d1444fd9eaa17e74c576ce) updating DIRECTORY.md - [`a6d7e7f`](https://github.com/TheAlgorithms/C/commit/a6d7e7f7b6204df81529acb8a63db568d37643e0) Merge branch 'TheAlgorithms:master' into master - [`631404e`](https://github.com/TheAlgorithms/C/commit/631404ed9417e04f156ca9bfe17729956a0cce2b) updating DIRECTORY.md - [`1d5dec9`](https://github.com/TheAlgorithms/C/commit/1d5dec99ab2bd1864bf53f3b617132e51be54bfb) Implementing suggestions from https://github.com/TheAlgorithms/C/pull/1209 - [`37778e6`](https://github.com/TheAlgorithms/C/commit/37778e6c1a4dd910f3876897fec277877d2eb1c7) Merge branch 'master' of https://github.com/ericbreyer/C - [`3897978`](https://github.com/TheAlgorithms/C/commit/38979785c58c36bb06152cf3cb974f222f8e9cbe) More suggestions from https://github.com/TheAlgorithms/C/pull/1209 ### 📊 Changes **12 files changed** (+844 additions, -5 deletions) <details> <summary>View changed files</summary> ➕ `.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) </details> ### 📄 Description #### Description of Change 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 previously #1209 but went stale because no maintainer checked #### Checklist - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Added tests and example, test must pass - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] 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 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:25:27 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1857