[][src]Module algos::sort

A module for using sorting algorithms.

It contains all major sorting algorithms.

Functions

bubble

Bubble Sort: Sort v slice according to the way you define the cmp parameter.

cocktail

Cocktail Sort: Sort v slice according to the way you define the cmp parameter. It's a variation of Bubble Sort.

heap

Heap Sort: Sort v slice according to the way you define the cmp parameter.

insection

Insection Sort: Sort v slice according to the way you define the cmp parameter.

merge

Merge Sort: Sort v slice according to the way you define the cmp parameter.

quick

Quick Sort: Sort v slice according to the way you define the cmp parameter.

selection

Selection Sort: Sort v slice according to the way you define the cmp parameter.