在JavaScript中使用冒泡排序对数组进行排序

我们需要编写一个JavaScript函数,该函数接受一组文字,并使用冒泡排序对其进行排序。

示例

为此的代码将是-

const arr = [4, 56, 4, 23, 8, 4, 23, 2, 7, 8, 8, 45];

const swap = (items, firstIndex, secondIndex) => {

   var temp = items[firstIndex];

   items[firstIndex] = items[secondIndex];

   items[secondIndex] = temp;

};

const bubbleSort = items => {

   var len = items.length,

   i, j;

   for (i=len-1; i >= 0; i--){

      for (j=len-i; j >= 0; j--){

         if (items[j] < items[j-1]){

            swap(items, j, j-1);

         }

      }

   }

   return items;

};

console.log(bubbleSort(arr));

输出结果

控制台中的输出-

[

   2, 4, 4, 4, 7,

   8, 8, 8, 23, 23,

   45, 56

]

以上是 在JavaScript中使用冒泡排序对数组进行排序 的全部内容, 来源链接: utcz.com/z/322428.html

回到顶部