JS快速排序 var quickSort = function(array) { if (array.length <= 1) { return array; } var middleIndex = Math.floor(arra