Live data from Hacker News

Cuckoo hashing

en.wikipedia.org

1–3 of 3 posts

Re: Cuckoo hashing

#3
Hash tables are data structures that map keys to values. Cuckoo hashing has good storage efficiency and predictable worst case performance. Simpler designs like linear probing don't perform as well as Cuckoo hashing when the table is near full.