algorithm_rust 0.6.0

some common rust_algorithms, Everyone can participate, and the project will continue to be updated, all the algorithms comes from <Introduction to Algorithms III>
Documentation
1
2
3
4
5
6
7
8
9
10
mod binary;
mod linearity;
mod max;
mod min;
mod min_and_max;
pub use self::binary::search as binary_search;
pub use self::linearity::search as linearity_search;
pub use self::max::max as max_search;
pub use self::min::min as min_search;
pub use self::min_and_max::find_min_max as min_and_max;