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.