Crate rust_sort[][src]

rust_sort is a collection of sorting algorithms implemented purely for educational purposes.

  • bubble sort
  • selection sort
  • insertion sort
  • cocktail sort
  • merge sort
  • quick sort

TODO

  • tim sort
  • heap sort
  • counting sort
  • bucket sort
  • radix sort
  • bogo sort
  • sleep sort

Modules

bubble_sort
cocktail_sort
insertion_sort
merge_sort
quick_sort
selection_sort

Traits

Sortable