1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
//!
//! 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;
/// Segment Tree
pub mod segment_tree;
/// Mathematics algorithms
pub mod math;
/// Trie or  prefix tree
pub mod trie;