1
2
3
4
5
6
7
8
9
//! # Rudac
//! Rudac is a **Ru**st **D**ata structure and **A**lgorithm **C**rate.
//! It aims to be a comprehensive crate of useful data structure and algorithms.

pub mod heap;
pub mod queue;
pub mod tree;
pub mod util;
pub mod algo;