An open API service indexing awesome lists of open source software.

https://github.com/flakey5/maps

A bunch of maps implemented in Rust because this was honestly the best idea I had to learn this language
https://github.com/flakey5/maps

data-structures hashmap rust-lang

Last synced: 12 months ago
JSON representation

A bunch of maps implemented in Rust because this was honestly the best idea I had to learn this language

Awesome Lists containing this project

README

          

# maps

A bunch of maps implemented in Rust because this was honestly the best idea I had to learn this language

## Implementations

### Tree Map

[Source](./src/tree_map.rs)

Binary search tree map

### Hash Map

[Source](./src/hash_map.rs)

Hash map utilizing a tree map for collisions