冒泡排序到demo

 1 package com.lmy.demoSort;
 2 /**
 3  * 冒泡排序demo
 4  * @author Yubaba
 5  *
 6  */
 7 public class BubbleSort {
 8 
 9     public static void main(String[] args) {
10     int[] arr={11,3,8,2,9,1};
11     System.out.println("排序前數組爲:");
12     for(int num:arr){
13     System.out.print(num+" ");
14     }
15     for(int i=0;i<arr.length-1;i++){//外層循環控制排序趟數
16     for(int j=0;j<arr.length-1-i;j++){//內層循環控制每一趟排序多少次
17     if(arr[j]>arr[j+1]){
18         int temp=arr[j];
19         arr[j]=arr[j+1];
20         arr[j+1]=temp;
21         }
22     }
23 }
24     System.out.println();
25     System.out.println("排序後的數組爲:");
26      for(int num:arr){
27      System.out.print(num+" ");
28      } 
29     }
30 }
相關文章
相關標籤/搜索
本站公眾號
   歡迎關注本站公眾號,獲取更多信息