冒泡排序演算法在JavaScript中的標準實現

來源:互聯網
上載者:User

簡單的 JavaScript 冒泡排序(Bubble Sort)演算法程式:

Code
SortHelper = {
  BubbleSort: function(array) {
    length = array.length;
    for(i=0; i<=length-2; i++) {
      for(j=length-1; j>=1; j--) {
        //對兩個元素進行交換
        if(array[j] < array[j-1]) {
          temp = array[j];
          array[j] = array[j-1];
          array[j-1] = temp;
        }
      }
    }
  }
}

它所實現的功能:將一個數組的元素按照從小到大的順序重新排列。我們對上面的這個樣本程式進行效果測試:

Code
testCase = {
  run: function() {
    array = [8, 1, 4, 7, 3];
    SortHelper.BubbleSort(array);
    for(i in array) {
      console.log(array[i]);
    }
  }
}
testCase.run();

在 j 迴圈中數組在程式運行時的情況如下:

{1, 8, 3, 4, 7}
{1, 3, 8, 4, 7}
{1, 3, 4, 8, 7}
{1, 3, 4, 7, 8}

C# 語言實現參考:

http://www.cnblogs.com/JimmyZhang/archive/2008/12/17/1356727.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.