From 222eb006e618dd8f1f81cab2ee1496a61c727bca Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Sun, 6 Sep 2026 22:53:34 +0100 Subject: [PATCH] Add extra reference for robin hood hash tables --- documents/hash_tables_refs.md | 1 + 1 file changed, 1 insertion(+) diff --git a/documents/hash_tables_refs.md b/documents/hash_tables_refs.md index f73dd5d..a267c4a 100644 --- a/documents/hash_tables_refs.md +++ b/documents/hash_tables_refs.md @@ -28,6 +28,7 @@ uint64_t fold_128_to_64(uint128_t hash) { - [Martinus (Ankerl) — most widely used C++ implementation](https://github.com/martinus/unordered_dense) - [Tessil — clean header-only C++ implementation](https://github.com/Tessil/robin-map) - [Malte Skarupke — Robin Hood with probe count limit](https://github.com/skarupke/flat_hash_map) +- [Robin Hood Hashing – Fairness in Collision Resolution](https://blog.hieunt.me/blog/robinhood-hashing) ## Robin Hood vs SwissTable