1. Algorithm steps
Compares the adjacent elements. If the first one is bigger than the second one, swap them both.
Do the same for each pair of adjacent elements, starting with the last pair from the first pair to the end. When this is done, the final element will be the maximum number.
Repeat the above steps for all elements, except for the last one.
Repeat the above steps each time for fewer elements, until there are no pairs of numbers to compare.
2. Motion Diagram Demo
3. When is the fastest
When the input data is already in the positive order (it is already a positive order, I also want you to bubble sort what is the use of AH).
4. When is the slowest?
When the input data is reversed (write a for loop to reverse the output data is not OK, why do you bubble sort it, I am idle).
5. JavaScript Code Implementation
function Bubblesort (arr) {var len = arr.length; for (var i = 0; i < Len; i++) {for (var j = 0; j < len-1-i ; J + +) {if (Arr[j] > Arr[j+1]) {// Adjacent elements 22 contrast var temp = Arr[j+1]; //element Exchange Arr[j+1] = Arr[j]; arr[j] = temp;}} } return arr;
One of the simplest sorting algorithms bubble sort----JS implementation