您的当前位置:首页正文

javascript冒泡排序如何实现

2024-08-01 来源:化拓教育网

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学习指路:

推荐操作环境:windows7系统、jquery3.2.1版本,DELL G3电脑。