Home > Web Front-end > JS Tutorial > Detailed explanation of Javascript bubble sort algorithm_Basic knowledge

Detailed explanation of Javascript bubble sort algorithm_Basic knowledge

WBOY
Release: 2016-05-16 16:29:16
Original
1678 people have browsed it

Compare 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 first pair and ending with the last pair. At this point, the last element should be the largest number.
Repeat the above steps for all elements except the last one.
Keep repeating the above steps for fewer and fewer elements each time until there are no pairs of numbers left to compare.

Copy code The code is as follows:

function sort(elements){
for(var i=0;i for(var j=0;j If(elements[j]>elements[j 1]){
          var swap=elements[j];
         elements[j]=elements[j 1];
        elements[j 1]=swap;
}
}
}
}

var elements = [3, 1, 5, 7, 2, 4, 9, 6, 10, 8];
console.log('before: ' elements);
sort(elements);
console.log(' after: ' elements);



Efficiency:

Time complexity: Best: O(n), Worst: O(n^2), Average: O(n^2).

Space complexity: O(1).

Stability: Stable.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template