lib.rs

#

This library shows tested implementations of common data structures and algorithms

Primitive

Arrays

Strings

Graphs

Trees

#![feature(test)]
#![allow(unused)]

use peak_alloc::PeakAlloc;

#[cfg_attr(test, global_allocator)]
static PEAK_ALLOC: PeakAlloc = PeakAlloc;

#[cfg(test)]
extern crate test;

pub mod arrays;
pub mod basic;
pub mod distances;
pub mod graphs;
pub mod images;
pub mod primitive;
pub mod sorts;
pub mod strings;
pub mod trees;