Bst Hashmap
A binary tree implementation, with an interface imitating key-value collections like HashMap.
Binary trees are not recommended for production since they are not balanced. This repository is intended for study purposes only.
let mut map = default;
map.insert;
map.insert;
map.insert;
map.insert;
map.insert;
if let Some = map.search else
if let Some = map.min
if let Some = map.max
map.remove;
println!;
if map.search.is_none
📝 License
This project is open-source under the MIT License.