javascript冒泡排序如何实现

美女程序员鼓励师

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电脑。

以上是 javascript冒泡排序如何实现 的全部内容, 来源链接: utcz.com/z/546306.html

回到顶部