快速排序

Posted xiaosongjiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快速排序相关的知识,希望对你有一定的参考价值。

function quickSort (arr) {
  if (arr.length === 0) {
    return [];
  }
  let left = [];
  let right = [];
  let pivot = arr[0];
  for (let index = 1; index < arr.length; index++) {
    const element = arr[index];
    if (element < pivot) {
      left.push(element);
    } else {
      right.push(element);
    }
  }
  return [...quickSort(left), pivot, ...quickSort(right)];
}

const arr = [2, 3, 43, 5, 1, 7, 6, 3, 22];
console.log(‘排序之前‘, arr);
const res = quickSort(arr);
console.log(‘排序之后‘, res);
排序之前 [
  2,  3, 43,
  5,  1,  7,
  6,  3, 22
]
排序之后 [
  1,  2,  3,
  3,  5,  6,
  7, 22, 43
]

 

以上是关于快速排序的主要内容,如果未能解决你的问题,请参考以下文章

算法排序之堆排序

前端开发工具vscode如何快速生成代码片段

前端开发工具vscode如何快速生成代码片段

如何使用sublime代码片段快速输入PHP头部版本声明

代码片段如何使用CSS来快速定义多彩光标

vs2003:快速片段工具