美文网首页
快速排序

快速排序

作者: Lee_How | 来源:发表于2019-06-15 00:48 被阅读0次
    function quickSort(array) {
      if (array.length < 2) {
        return array
      } else {
        const pivot = array[0]
    
        const less = array.filter(i => i < pivot)
        const grater = array.filter(i => i > pivot)
    
        return [...quickSort(less), pivot, ...quickSort(grater)]
      }
    }
    

    相关文章

      网友评论

          本文标题:快速排序

          本文链接:https://www.haomeiwen.com/subject/wmkvfctx.html