Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 520 Bytes

README.md

File metadata and controls

8 lines (7 loc) · 520 Bytes

Binary Trees and Lowest Common Ancestors in Rust

Note: the tree should work for any data type with trait PartialOrd and trait Copy, and is tested for most standard primitive numeric types like i32, u32, i64, u64, f32 and f64.

Steps to test:

  • Download and install Rust and Cargo as described here.
  • Open a terminal to the repo directory.
  • In the terminal, run cargo test to view test results.

To view docs in your browser run cargo doc --open.