Hash Table Implementation in Rust
This repo was purely for educational purposes.
the benchmarks show how much slower this version of std::collections::HashMap is.
For resolving collisions we use Open Addressing. For the hash function we use djb2
$ cargo run --release
$ cargo test