algs4 0.7.0

Algorithms, 4ed. MOOC in Coursera. in Rust.
#![feature(iter_arith, associated_type_defaults, str_char)]

extern crate rand;
extern crate byteorder;
extern crate adivon;
#[macro_use]
extern crate mtl;

pub mod fundamentals;

pub mod sorting;

pub mod searching;

pub mod graphs;

pub mod strings;

pub mod convex_hull;

pub mod geometric_search;

pub mod searching_application;

pub mod context;