Info

This question is closed. Reopen it to edit or answer.

I am trying to implement a selection sort function

1 view (last 30 days)
Kevin Junior
Kevin Junior on 16 Oct 2013
Closed: Walter Roberson on 19 Oct 2013
what I got is a little too messy I want a more concise code for selection sort
function [y,TotalC,TotalS] = selectSort(x)
% x is an n-vector
% y is x with x(1) and x(m) swapped where x(m) is the minimum value in x
n = length(x);
TotalC = 0;
TotalS = 0;
S = 0;
for i = (1:n-1)
m = y(i);
minIndex = i;
for j = (i:n)
if y(j) <= m
m = y(j);
minIndex = j;
end
end
if i ~= minIndex
y([minIndex i]) = y([i minIndex]); %Swap
end
TotalC = TotalC + C;
TotalS = TotalS + S;
end %for

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!