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
mod square;
///矩阵
mod matrix;
pub use self::square::add as square_matrix_add;
pub use self::square::multiply as square_matrix_multiply;
pub use self::matrix::Matrix as Matrix;