1
2
3
4
5
6
7
8
//! Algorithms Cookbook in Rust.
pub mod caching;
pub mod graph;
pub mod math;
pub mod order;
pub mod range_query;
pub mod scanner;
pub mod string_proc;