Expand description
This crate is a place where I take notes when learning about a particular data structure or algorithm in Rust, usually by trying to implement a nominal version of the thing myself.
Modulesยง
- channel
- Implementations of
std::sync::mpsc
-like channels, based on a Crust of Rust stream by Jon Gjengset. - hashmap
- rc
- Special note on the phantom/marker data:
- refcell
- sort
- Implementations of a few sorting algorithms, based on a brilliant Crust of Rust stream by Jon Gjengset.