mirror of https://github.com/sgoudham/bst-rs.git
sgoudham bac301ad3a | 3 years ago | |
---|---|---|
src | 3 years ago | |
tests | 3 years ago | |
.gitignore | 3 years ago | |
Cargo.toml | 3 years ago | |
LICENSE | 3 years ago | |
README.md | 3 years ago |
README.md
bst-rs
Recursive & Iterative Binary Search Tree Implementations within Rust
Table of Contents
Personal Goals
One of the main motivations for starting this is to fully grasp the following concepts
- Ownership/Borrowing
- Generic Traits
- Lifetimes
I am now more confident programming around these concepts and can discuss and reason about different implementations.
Usage
TODO
License
Inspiration
The book Learn Rust With Entirely Too Many Linked Lists inspired me to try and implement a Binary Search Trees within the language. I had also been wanting to create my first library for other crates to use.