Bubble Sort¶
Flesh out the following code so that it sorts the array using a bubble sort. The algorithm is very similar to the exchange sort.
You should probably read this visualization of bubble sort.
before: 45 87 39 32 93 86 12 44 75 50
after : 12 32 39 44 45 50 75 86 87 93
©2021 Daniel Gallo
This assignment is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License.
Adapted for Python from Graham Mitchell’s Programming By Doing