Dictionary of Computer and Internet Terms: selection sort
selection sort
algorithm for sorting the elements of an array by first selecting the lowest-valued item, then the next lowest, and so on. In practice, the lowest-valued item is interchanged with the first item in the part of the array being searched, and the search is confined to the remainder of the array from then on.


