Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 540 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 540 Bytes

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

Quick Start

$ cargo run --release

Run tests

$ cargo test