Problem 1401. Implement a bubble sort technique and output the number of swaps required
A bubble sort technique compares adjacent items and swaps them if they are in the wrong order. This is done recursively until all elements are in ascending order. Find the total number of swaps required to sort an input vector using a simple bubble sort technique. For more information see the wikipedia page: http://en.wikipedia.org/wiki/Bubble_sort
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers305
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
49611 Solvers
-
2463 Solvers
-
14952 Solvers
-
1301 Solvers
-
1777 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!