This chapter is concerned with sorting numeric or character data. It handles only the simplest types of data structure and it is concerned only with internal sorting – that is, sorting a set of data which can all be stored within the program.
If you have large files of data or complicated data structures to be sorted you should use a comprehensive sorting program or package.
2Background to the Problems
2.1Sorting
The usefulness of sorting is obvious (perhaps a little too obvious,
since sorting can be expensive and is sometimes done when not strictly necessary). Sorting may traditionally be associated with data processing and non-numerical programming, but it has many uses within the realm of numerical analysis. For example, within the NAG Library, sorting is used to arrange eigenvalues in ascending order of absolute value, in the manipulation of sparse matrices, and in the ranking of observations for nonparametric statistics.
The general problem may be defined as follows. We are given
items of data
Each item contains a key which can be ordered relative to any other key according to some specified criterion (for example, ascending numeric value). The problem is to determine a permutation
which puts the keys in order:
Sometimes we may wish actually to rearrange the items so that their keys are in order; for other purposes we may simply require a table of
indices so that the items can be referred to in sorted order;
or yet again we may require a table of ranks, that is, the positions of each item in the sorted order.
For example, given the single-character items, to be sorted into alphabetic order
E B A D C
the indices of the items in sorted order are
and the ranks of the items are
.
Indices may be converted to ranks, and vice versa, by simply computing the inverse permutation.
The items may consist solely of the key (each item may simply be a number). On the other hand, the items may contain additional information (for example,
each item may be an eigenvalue of a matrix and its associated eigenvector,
the eigenvalue being the key). In the latter case there may be many distinct items with equal keys, and it may be important to preserve the original order among them (if this is achieved, the sorting is called
‘stable’).
There are a number of ingenious algorithms for sorting. For a fascinating discussion of them, and of the whole subject, see Knuth (1973).
The Quicksort algorithm, used by m01csc, is not stable in this sense; hence an alternative function, m01ctc, is provided which does perform a stable sort, but requires more internal workspace, and may be slower.
2.2Searching
Searching is a process of retrieving data stored in a computer's memory.
The general problem may be defined as follows:
We are given items of data that have been sorted and a sought-after item . Each item contains a key. The problem is to find which item has as its key.
We may be interested in different information gained from the search. We may wish to know if item was or was not found or the position of the item that was found.
4Auxiliary Functions Associated with Library Function Arguments
None.
5 Withdrawn or Deprecated Functions
None.
6References
Cannizzo F (2018) A fast and vectorizable alternative to binary search in O(1) with wide applicability to arrays of floating point numbers Journal of Parallel and Distributed Computing113 37–54
Knuth D E (1973) The Art of Computer Programming (Volume 3) (2nd Edition) Addison–Wesley
Wirth N (2004) Algorithms and Data Structures 35–36 Prentice Hall