冒泡排序

  1. public class Sort {  
  2.   
  3.     /** 
  4.      * bubble sort 
  5.      *  
  6.      * @param ia 
  7.      *            需要排序的数组 
  8.      */  
  9.     public static void bubbleSort(int[] ia) {  
  10.         int i = ia.length;  
  11.         int temp;  
  12.         while (i > 0) {  
  13.             for (int j = 0; j < i - 1; j++) {  
  14.                 if (ia[j] > ia[j + 1]) {  
  15.                     temp = ia[j];  
  16.                     ia[j] = ia[j + 1];  
  17.                     ia[j + 1] = temp;  
  18.                 }  
  19.             }  
  20.             i--;  
  21.         }  
  22.     }  
  23.   
  24.     public static void printArr(int[] ia) {  
  25.         for (int a : ia) {  
  26.             System.out.print(a + " ");  
  27.         }  
  28.     }  
  29.   
  30.     public static void main(String[] args) {  
  31.         // 等待排序数组  
  32.         int[] ia = { 4642987, -3209964358, -32323848689 };  
  33.         // 冒泡排序  
  34.         bubbleSort(ia);  
  35.         // 打印排序后结果  
  36.         printArr(ia);  
  37.     }  


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值