1 2 3 4 5 6 7 8 9 10 11 12
//! //! Collection of basic algorithms for everyday development //! /// Binary search algorithm. pub mod binary_search; /// String-searching algorithms. pub mod string; /// Combinatorics algorithms pub mod combinatorics; /// Graph algorithms pub mod graph;