Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request: Bloom Filter #666

Open
Akshat-Shu opened this issue Mar 22, 2025 · 0 comments · May be fixed by #667
Open

Feature Request: Bloom Filter #666

Akshat-Shu opened this issue Mar 22, 2025 · 0 comments · May be fixed by #667

Comments

@Akshat-Shu
Copy link

Background:
A Bloom Filter is a probabilistic data structure for efficient set membership testing. It provides a way to check whether an element is definitely not in a set or possibly in it, with a small probability of false positives.
A Bloom Filter uses multiple hash functions to map elements to a fixed-size bit array. Checking for membership involves verifying if all corresponding bits are set. They do not directly store data and, therefore, are space-efficient. However, it does not support deletions.

Expected Behaviour

  • Implementation of a space-efficient Bit array to be utilized by the bloom filter
  • Should support multiple Data-types
  • Utilize various hash functions to add elements and check membership
@Akshat-Shu Akshat-Shu linked a pull request Mar 22, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant