Module sorting

Source

Functionsยง

bubble_sort
Sorts a slice using the Bubble Sort algorithm.
counting_sort
Sorts a slice using the Counting Sort algorithm.
heap_sort
Sorts a heap in ascending order (min heap) or descending order (max heap)
insertion_sort
Sorts a slice using the Insertion Sort algorithm.
merge_sort
Sorts a slice using the Merge Sort algorithm.
quick_sort
Sorts a slice using the Quick Sort algorithm.
radix_sort
Sorts a slice using the Radix Sort algorithm.
selection_sort
Sorts a slice using the Selection Sort algorithm.