fancy_sort

Crates.iofancy_sort
lib.rsfancy_sort
version0.1.2
sourcesrc
created_at2023-06-20 10:30:18.934138
updated_at2023-06-20 10:45:59.323938
descriptionImplementations of different sorting algorithms in Rust!
homepage
repositoryhttps://github.com/BastianAsmussen/fancy_sort
max_upload_size
id894912
size33,032
Bastian (BastianAsmussen)

documentation

README

Sorting

Implementations of different sorting algorithms in Rust!

Usage

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
Commit count: 9

cargo fmt