How do I sort an array in descending order without using the sort function?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jillian Sweatt
am 5 Nov. 2015
Beantwortet: Thorsten
am 5 Nov. 2015
A = [2 1 4 3 6 5 8 7 10 9 12 11 14 13 16 15 18 17 20 19]
0 Kommentare
Akzeptierte Antwort
Thorsten
am 5 Nov. 2015
You can use bubble sort:
swapped = 1;
while swapped
swapped = 0;
for i=1:numel(A)-1
if A(i+1) > A(i)
temp = A(i); A(i) = A(i+1); A(i+1) = temp; swapped = 1;
end
end
end
0 Kommentare
Weitere Antworten (2)
Siehe auch
Kategorien
Mehr zu Shifting and Sorting Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!