Nodejs Array Quick Sort quickSort()

Here you can find the source of quickSort()

Method Source Code

Array.prototype.quickSort = function() {
  var len = this.length

  if(len > 1) {
    var pivot = this[0]
    var left = []
    var right = []
    for(var i = 1; i < len; i++) {
      if(this[i] < pivot) {
        left.push(this[i])/*from   w  ww.  j  a  va 2 s. co m*/
      } else {
        right.push(this[i])
      }
    }
    return left.quickSort().concat(pivot, right.quickSort())
  } else {
    return this
  }
}

Related

  1. quickSort(A)
    function quickSort(A) {
      if (A.length === 0) {
        return [];
      if (A.length === 1 || (A.length === 2 && A[0] === A[1])) {
        return A;
      let p = A.findBasePoint();
      let leftPart = [],
    ...
    
  2. quickSort(a,start,end)
    'use strict'
    Array.prototype.showArray = function(){
        var temp = '';
        this.forEach(function(value,index){
            temp += value + " ";
        });
        if(typeof document !== "undefined"){
            document.body.innerHTML = temp;
        else{
            console.log(temp);
    };
    function partition(a,start,end){
        var i = start,j = end;
        var key = a[i];
        while(i<j){
            while(i<j && a[j] >= key){
                j--;
            if(i<j){
                var temp;
                temp = a[i];
                a[i] = a[j];
                a[j] = temp; 
            while(i<j && a[i] <= key){
                i++;
            if(i<j){
                var temp;
                temp = a[i];
                a[i] = a[j];
                a[j] = temp; 
        return i;
    function quickSort(a,start,end){
        var middle;
        if(start<end){
            middle = partition(a,start,end);
            quickSort(a,start,middle-1);
            quickSort(a,middle,end - 1);
    var a = [6,2,7,3,8,9];
    quickSort(a,0,5);
    a.showArray();
    
  3. quicksort(A, p, q)
    Array.prototype.swap = function(i, j) {
      var tmp = this[i];
      this[i] = this[j];
      this[j] = tmp;
    function partition(A, p, q, r) {
      var pivot = A[r];
      A.swap(r, p);
      var i = p;
    ...
    
  4. quicksort(A, p, r)
    "use strict";
    function main(A) {
        quicksort(A, 0, A.length - 1);
        console.log(A);
    function quicksort(A, p, r) {
        if (p < r) {
            var q = partition(A, p, r);
            quicksort(A, p, q - 1);
    ...
    
  5. quickSort()
    var quick = function(arr) {
      if(arr.length <= 1){
        return arr;
      var pivotIndex = Math.floor(arr.length / 2);
      var pivot = arr.splice(pivotIndex, 1)[0];
      var left = [];
      var right = [];
      var same = [];
    ...
    
  6. quickSort()
    Array.prototype.quickSort = function() {
      var len = this.length;
      if (len <= 1) {
        return this.slice(0);
      var left = [];
      var right = [];
      var mid = [this[0]];
      for (var i = 1; i < len; i++) {
    ...
    
  7. quickSort()
    Array.prototype.quickSort = function () {
      if (this.length < 2) {
        return this;
      let pivot = this[0];
      let left = [];
      let right = [];
      for (var i = 1; i < this.length; i++) {
        if (this[i] < pivot) {
    ...
    
  8. quickSort()
    Array.prototype.quickSort = function()
      if (this.length === 0) {
        return [];
      var left = [];
      var right = [];
      var pivot = this[0];
      for (var i = 1; i < this.length; i++) {
    ...
    
  9. quickSort()
    Array.prototype.quickSort = function () {
        if (this.length <= 1) {
            return this;
        var pointIndex = Math.floor(this.length / 2);
        var pointValue = this.splice(pointIndex, 1);
        var centerValue = pointValue[0];
        var left = [];
        var right = [];
    ...