algos 0.2.0

A collection of algorithms in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**************************************************************************************************
* Copyright 2017 Eric Shimizu Karbstein
* All rights reserved.
*
* This Source Code Form is subject to the terms of the BSD 3-Clause License.
**************************************************************************************************/

//! This crate is a collection of algorithms.
//! For now only sorting algorithms were implemented.
//! It is planned to implement searching and graphs algorithms.

extern crate rand;

pub mod sort;
pub mod search;