Glossary

Algo: Sorting algorithm

A sorting algorithm is an algorithm that puts elements of a list in a certain order. The most-used orders are numerical order and lexicographical order. Efficient sorting is important for optimizing the use of other algorithms (such as search and merge algorithms) that require sorted lists to work correctly; it is also often useful for canonicalizing data and for producing human-readable output. More formally, the output must satisfy two conditions:

  1. The output is in nondecreasing order (each element is no smaller than the previous element according to the desired total order);
  2. The output is a permutation (reordering) of the input.

Sorting algorithms are often classified by:

Examples of sorting algorithms: “Insertion Sort”, “Merge Sort”, “Heap Sort”, “Quick Sort”.

Visualizations of various sorting algorithms: By David R. Martin: http://www.sorting-algorithms.com/ By David Galles: http://www.cs.usfca.edu/~galles/visualization/ComparisonSort.html

Wikipedia