From c24dea548b2833a59680bdfb5f30f1bbc9997baf Mon Sep 17 00:00:00 2001 From: Maxime Pinard Date: Sun, 26 May 2019 10:48:56 -0400 Subject: [PATCH] Added pinam45/dynamic_bitset to containers --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7c542b3..5ac9735 100644 --- a/README.md +++ b/README.md @@ -253,6 +253,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny * [C++ B-tree](https://code.google.com/p/cpp-btree/) - A template library that implements ordered in-memory containers based on a B-tree data structure. [Apache2] * [Colony](https://github.com/mattreecebentley/plf_colony) - An unordered "bag"-type container which outperforms std containers in high-modification scenarios while maintaining permanent pointers to non-erased elements regardless of insertion/erasure. [zLib] [website](http://www.plflib.org/colony.htm) +* [dynamic_bitset](https://github.com/pinam45/dynamic_bitset) - A C++17 header-only dynamic bitset. [MIT] * [Forest](https://github.com/xorz57/forest) - Template library implementing an AVL, a Binary Search, a KD and a Quad Tree. [MIT] * [Hashmaps](https://github.com/goossaert/hashmap) - Implementation of open addressing hash table algorithms in C++. [MIT] * [Hopscotch map](https://github.com/Tessil/hopscotch-map) - A fast header-only hash map which uses hopscotch hashing for collisions resolution. [MIT]