{
for i = 1 to n do
{
j = i;
for k = i + 1 to n do
if (a[k] < a [j]) then j = k;
t = a[i];
a[i] = a[j];
a[j] = t;
}
}
The above code implements which sorting?
Answers
Answered by
1
Answer:
keep question properly
Similar questions