algorithm_rust 0.6.0

some common rust_algorithms, Everyone can participate, and the project will continue to be updated, all the algorithms comes from <Introduction to Algorithms III>
Documentation
mod insertion;
mod binary;
mod bubble;
mod merge;
mod selection;
mod heap;
mod quicksort;
mod count;
mod radix;
mod pattern;
pub use self::insertion::sort as insertion_sort;
pub use self::binary::sort as binary_sort;
pub use self::bubble::sort as bubble_sort;
pub use self::selection::sort as selection_sort;
pub use self::merge::sort as merge_sort;
pub use self::heap::max_sort as heap_max_sort;
pub use self::heap::min_sort as heap_min_sort;
pub use self::quicksort::quicksort as quicksort;
pub use self::count::count_sort as count_sort;
pub use self::radix::radix_sort as radix_sort;
pub use self::pattern::pattern_defeating_quicksort as pdqsort;