冒泡排序(Java)

來源:互聯網
上載者:User

標籤:


演算法核心
1 public void bubbleSort(){2         for(int i=0;i<length;i++){              //一共進行幾趟3             for(int j=0;j<length-i-1;j++){      //每一趟中,最後i個已經為有序狀態4                 if(a[j]>a[j+1]){5                     swap(j,j+1);6                 }7             }8         }9     }

 



完整演算法

1 package bubbleSort; 2 3 public class Sort { 4 public static void main(String args[]){ 5 Array arr = new Array(10); 6 for(int i=0;i<10;i++){ 7 arr.insert(10-i); 8 } 9 arr.bubbleSort();10 arr.display();11 }12 13 }14 class Array{15 private int[]a;16 private int length;17 public Array(int max){18 a = new int[max];19 length=0;20 }21 public void insert(int value){22 a[length]=value;23 length++;24 }25 public void display(){26 for(int i=0;i<a.length;i++){27 System.out.println("a["+i+"]="+a[i]);28 }29 }30 public void bubbleSort(){31 for(int i=0;i<length;i++){ //一共進行幾趟32 for(int j=0;j<length-i-1;j++){ //每一趟中,最後i個已經為有序狀態33 if(a[j]>a[j+1]){34 swap(j,j+1);35 }36 }37 }38 }39 public void swap(int indexa,int indexb){40 int temp = a[indexa];41 a[indexa]= a[indexb];42 a[indexb]=temp;43 }44 }

運行結果

 

冒泡排序(Java)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.