Drew DeVault 4/12/2016

How to write a better bloom filter in C

Read Original

This article provides a detailed, code-focused critique and improvement over a common Bloom filter implementation. It presents a complete, alternative Bloom filter written in C, highlighting advantages like bringing your own hash functions, supporting arbitrary data types, and direct bit manipulation for better space efficiency compared to a C++ std::vector<bool> approach.

How to write a better bloom filter in C

Comments

No comments yet

Be the first to share your thoughts!

Browser Extension

Get instant access to AllDevBlogs from your browser

Top of the Week