1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//!
//! 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;
/// Huffman Coding
pub mod huffman;
/// Bloom filter
pub mod bloom_filter;
/// Sparse table
pub mod sparse_table;
/// Binary Tree
pub mod binary_tree;
/// DSU (disjoint-set-union)
pub mod dsu;
/// Sheduling algorithms
pub mod sheduling;