pub mod bubble;
pub mod insertion;
pub mod selection;
pub mod quick;
pub mod heap;
pub mod merge;
pub mod shell;
pub use bubble::BubbleSort;
pub use insertion::InsertionSort;
pub use selection::SelectionSort;
pub use quick::QuickSort;
pub use heap::HeapSort;
pub use merge::MergeSort;
pub use shell::ShellSort;