1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
/**************************************************************************************************
* Copyright 2018 GrayJack
* 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, searching and pattern matching algorithms were implemented.

extern crate rand;

pub mod sort;
pub mod search;
pub mod pattern;