From 9517fe7bb7de002719c465d9143485c7639811cf Mon Sep 17 00:00:00 2001 From: toge Date: Sun, 22 Oct 2023 05:26:06 +0900 Subject: [PATCH] Add unordered_dense (fast hashmap, hashset) (#1423) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d9dd236..c97d00b 100644 --- a/README.md +++ b/README.md @@ -346,6 +346,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny * [robin-hood-hashing](https://github.com/martinus/robin-hood-hashing) - Fast & memory efficient hashtable based on robin hood hashing for C++14. [MIT] * [robin-map](https://github.com/Tessil/robin-map) - Fast hash map and hash set using robin hood hashing. [MIT] * [sparsepp](https://github.com/greg7mdp/sparsepp) - A fast, memory efficient hash map for C++. [BSD 3-clause] +* [unordered_dense](https://github.com/martinus/unordered_dense) - A fast & densely stored hashmap and hashset based on robin-hood backward shift deletion. [MIT] ## Cryptography *Cryptography and Encryption Libraries*