algo/src/algorithms/mod.rs

9 lines
153 B
Rust
Raw Normal View History

2017-08-27 11:27:35 +00:00
pub trait Algorithm {
2017-08-27 13:51:31 +00:00
fn sort(vector: Vec<i32>) -> Result<Vec<i32>, &'static str>;
2017-08-27 11:27:35 +00:00
}
2017-08-27 13:51:31 +00:00
pub mod bubblesort;
2017-08-27 15:26:01 +00:00
pub mod mergesort;
pub mod insertionsort;