selection sort
Sort algorithms home
JavaCFORTRANPASCAL
sort
selection sort
Inherits from In-place sort
An algorithm which orders items by repeatedly looking through remaining items to find the least one and moving it to a final location. [National Institute of Standards and Technology]
Demonstrations: http://www.cosc.canterbury.ac.nz/people/mukundan/dsal/SSort.html
Implementations and sample code: http://www.cs.ubc.ca/spider/harrison/Java/sorting-demo.html [Java]