1、比较所有相邻元素,如果第一个比第二个大,交换它们。
2、一轮下来,最后一个数字是。
3、排序可以通过执行n-1轮来完成。
4、时间复杂度有两个嵌套循环、O(n^2)。
实例
Array.prototype.bubbleSort = function () { for (let i = 0; i < this.length - 1; i += 1) { for (let j = 0; j < this.length - 1 - i; j += 1) { if (this[j] > this[j + 1]) { const temp = this[j]; this[j] = this[j + 1]; this[j + 1] = temp; } } } }; const arr = [5, 4, 3, 2, 1]; arr.bubbleSort();
以上就是javascript冒泡排序的实现,希望对大家有所帮助。更多Javascript学习指路:Javascript
推荐操作环境:windows7系统、jquery3.2.1版本,DELL G3电脑。
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试