util_algorithm#

Sorting Algorithm#

algo_bubble_sort(array[, verbose])

Sort the input array using bubble sort algorithm.

algo_heap_sort(array[, verbose])

Sort the input array using heap sort algorithm.

algo_insertion_sort(array[, verbose])

Sort the input array using insertion sort algorithm.

algo_merge_sort(array[, verbose])

Sort the input array using merge sort algorithm.

algo_quick_sort(array[, verbose])

Sort the input array using quick sort algorithm.

algo_selection_sort(array[, verbose])

Sort the input array using selection sort algorithm.