How do I sort an array in descending order without using the sort function?
조회 수: 2 (최근 30일)
이전 댓글 표시
A = [2 1 4 3 6 5 8 7 10 9 12 11 14 13 16 15 18 17 20 19]
댓글 수: 0
채택된 답변
Thorsten
2015년 11월 5일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!