Nodejs Array Bubble Sort bubbleSort()

Here you can find the source of bubbleSort()

Method Source Code

"use strict";/*from  ww  w . j a  va  2s  . c  o m*/

Array.prototype.bubbleSort = function () {
  let sorted = false;

  while (!sorted) {
    sorted = true;
    for (let i = 0; i < (this.length - 1); i++) {
      if (this[i] > this[i + 1]) {
        let tmp = this[i];
        this[i] = this[i + 1];
        this[i + 1] = tmp;

        sorted = false;
      }
    }
  }

  return this;
};
console.log([5, 3, 4, 2, 1].bubbleSort());

String.prototype.substrings = function () {
  let substrings = [];

  for (let start = 0; start < this.length; start++) {
    for (let len = 1; (start + len) <= this.length; len++) {
      substrings.push(this.slice(start, start + len));
    }
  }

  return substrings;
};

console.log("abc".substrings());

Related

  1. bubbleSort()
    Array.prototype.bubbleSort = function () {
        for (var i = 0; i < this.length - 1; i++) {
            var temp = null;
            for (var j = 0; j < this.length - 1 - i; j++) {
                if (this[j] > this[j + 1]) {
                    temp = this[j];
                    this[j] = this[j + 1];
                    this[j + 1] = temp;
        return this;
    };
    ary = [3, 2, 1];
    console.log(ary.bubbleSort());
    
  2. bubbleSort()
    Array.prototype.bubbleSort = function() {
      var sorted = false;
      while (sorted === false) {
        sorted = true;
        for (var i = 0; i < this.length - 1; i++) {
          if (this[i] > this[i + 1]) {
            sorted = false;
            var tempNum = this[i];
            this[i] = this[i + 1];
    ...
    
  3. bubbleSort()
    Array.prototype.bubbleSort = function () {
      for (var i = 0; i < this.length; i++) {
        for (var j = i+1; j < this.length; j++) {
          if (this[i] > this[j]) {
            var dummy = this[i];
            this[i] = this[j];
            this[j] = dummy;
          };
        };
    ...
    
  4. bubbleSort()
    Array.prototype.bubbleSort = function () {
      for (var i = 0; i < this.length; i++) {
        for (var j = 0; j < this.length - 1; j++) {
          if (this[j] > this[j+1]){
            var placeholder = this[j+1]
            this[j+1] = this[j];
            this[j] = placeholder;
      return this;
    
  5. bubbleSort()
    Array.prototype.bubbleSort = function() {
      var sorted = false;
      while (sorted === false) {
        sorted = true;
        for (var i = 0; i < this.length - 1; i++) {
          if (this[i] > this[i+1]) {
            var temp = this[i];
            this[i] = this[i+1];
            this[i+1] = temp;
    ...
    
  6. bubbleSort()
    Array.prototype.bubbleSort = function() {
      let sorted = false;
      while (sorted === false) {
        sorted = true;
        for (let i = 0; i < this.length - 1; i++) {
          let j = i + 1;
          if (this[i] > this[j]) {
            let first = this[i];
            let second = this[j];
    ...
    
  7. bubbleSort()
    "use strict";
    Array.prototype.bubbleSort = function() {
      var sorted = false;
      var arr = this;
      var oneIteration = function() {
        for(var i = 0; i < arr.length - 1; i++) {
          var first = arr[i]
          var second = arr[i+1]
          if( first > second ) {
    ...
    
  8. bubbleSort()
    Array.prototype.bubbleSort = function() {
      while(true) {
        let doneSorting = true;
        for (i=0; i < this.length-1; i++) {
          if (this[i+1] < this[i]) {
            let tempI = this[i];
            this[i] = this[i+1];
            this[i+1] = tempI;
            doneSorting = false;
    ...
    
  9. bubbleSort()
    Array.prototype.bubbleSort = function () {
      var sorted = false;
      while (!sorted) {
        sorted = true;
        for (var i = 0; i < this.length - 1; i++) {
          if (this[i + 1] < this[i]) {
            var current_item = this[i];
            this[i] = this[i + 1];
            this[i + 1] = current_item;
    ...