algods 0.1.0

A collection of data structures and algorithms
Documentation
//! # algorithms and data structures
//!
//! `algods` is a collection of some classic algorithms and data structures
//! that can be used as basis of more complex programs.

/// This module regroups implementations of classical graph structures
/// and some classical graph processing algorithms
pub mod graph;

/// This module contains data compression algorithms
pub mod compression;

/// Encompasses some basic structures
pub mod data_structure;

/// Regroups some classic search algorithms
pub mod search;

/// Regroups some classic sort algorithms
pub mod sort;

/// Regroups a collection of useful objects
pub mod utils;