algorithmz 1.1.5

This is the corresponding implemenation of the python module of the same name.
Documentation
//! `sorting`
//!
//! `sorting` is a submodule that contains sorting based algorithms.

/// The `bead_sort` algorithm
pub mod bead_sort;
pub use bead_sort::bead_sort;
/// The `bubble_sort` algorithm
pub mod bubble_sort;
pub use bubble_sort::bubble_sort;
/// The `insertion_sort` algorithm
pub mod insertion_sort;
pub use insertion_sort::insertion_sort;
/// The `counting_sort` algorithm
pub mod counting_sort;
pub use counting_sort::counting_sort;
/// The `cycle_sort` algorithm
pub mod cycle_sort;
pub use cycle_sort::cycle_sort;
/// The `shell_sort` algorithm
pub mod shell_sort;
pub use shell_sort::shell_sort;
/// The `quick_sort` algorithm
pub mod quick_sort;
pub use quick_sort::quick_sort;
/// The `bitonic_sort` algorithm
pub mod bitonic_sort;
pub use bitonic_sort::bitonic_sort;
/// The `bogo_sort` algorithm
pub mod bogo_sort;
pub use bogo_sort::bogo_sort;
/// The `bucket_sort` algorithm
pub mod bucket_sort;
pub use bucket_sort::bucket_sort;
/// The `cocktail_shaker_sort` algorithm
pub mod cocktail_shaker_sort;
pub use cocktail_shaker_sort::cocktail_shaker_sort;
/// The `comb_sort` algorithm
pub mod comb_sort;
pub use comb_sort::comb_sort;
/// The `exchange_sort` algorithm
pub mod exchange_sort;
pub use exchange_sort::exchange_sort;
/// The `gnome_sort` algorithm
pub mod gnome_sort;
pub use gnome_sort::gnome_sort;
/// The `heap_sort` algorithm
pub mod heap_sort;
pub use heap_sort::heap_sort;
/// The `meeting_rooms_sort` algorithm
pub mod meeting_rooms_sort;
pub use meeting_rooms_sort::meeting_rooms_sort;
/// The `merge_sort` algorithm
pub mod merge_sort;
pub use merge_sort::merge_sort;
/// The `pancake_sort` algorithm
pub mod pancake_sort;
pub use pancake_sort::pancake_sort;
/// The `pigeonhole_sort` algorithm
pub mod pigeonhole_sort;
pub use pigeonhole_sort::pigeonhole_sort;
/// The `radix_sort` algorithm
pub mod radix_sort;
pub use radix_sort::radix_sort;
/// The `selection_sort` algorithm
pub mod selection_sort;
pub use selection_sort::selection_sort;
/// The `color_sort` algorithm
pub mod color_sort;
pub use color_sort::color_sort;
/// The `wiggle_sort` algorithm
pub mod wiggle_sort;
pub use wiggle_sort::wiggle_sort;
/// The `stooge_sort` algorithm
pub mod stooge_sort;
pub use stooge_sort::stooge_sort;