Hacker News new | ask | show | jobs
by sanxiyn 3397 days ago
Yes. It's open addressing, linear probing, Robin Hood hashing.

https://doc.rust-lang.org/std/collections/struct.HashMap.htm...

1 comments

The program which reached the top of k-n does not use the standard library's hashmap, it uses ordermap: https://github.com/bluss/ordermap

Though that's also an open addressed map.