Selection Sort
Başla
Durdur
Sıfırla
Pseudocode
begin selectionSort(list)
for all elements of list
if A[ i ] < A[ smallest ]
smallest ← i
Exchange A[ j ] ↔ A[ smallest ]
end selectionSort