1
2
3
4
5
6
7
8
pub mod selection;
pub mod bubble;
pub mod merge;

pub use selection::selection_sort;
pub use bubble::bubble_sort;
pub use merge::merge_sort;