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
mod merge_max;
mod rude;

pub use self::merge_max::max as merge_max_subarray;
pub use self::rude::max as rude_max_subarray;