Sorting
Implementations of different sorting algorithms in Rust!
Usage
rust
fn main() {
let sorted = sorting::sort(&[0.0, 2.0, 5.0, 1.0], SortType::Quick);
}
Implemented algorithms
- Bubble sort
- Insertion sort
- Selection sort
- Merge sort
- Quicksort
- Heapsort
- Shell sort
- Cocktail sort
- Comb sort
- Counting sort
- Radix sort
- Bogo sort
- Stalin sort