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

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