Algorithm:SELECTION_SORT(A) for i<-- to n-1 do min<--i; for j<--i+1 to n do if A[j] min<--j if min!=i then temp<--A[i] A[i]<--[min] A[min]<--temp