Chinaunix首页 | 论坛 | 博客
  • 博客访问: 57125
  • 博文数量: 11
  • 博客积分: 210
  • 博客等级: 二等列兵
  • 技术积分: 135
  • 用 户 组: 普通用户
  • 注册时间: 2008-08-01 11:55
文章分类
文章存档

2013年(6)

2008年(5)

我的朋友

分类: Java

2013-10-09 21:55:05


点击(此处)折叠或打开

  1. class Sort{
  2.         public static void main(String [] args){
  3.         int [] num = {1,4,7,2,8,3,5,9,6};
  4.         
  5.         num = arrSort(num);
  6.         for(int i = 0; i < num.length; i++){
  7.             System.out.print(num[i]);
  8.             System.out.print(" ");
  9.         }
  10.     }
  11.     
  12.     public static int [] arrSort(int [] num){
  13.         for(int i = 0; i < num.length-1; i++){
  14.             for(int j = 0; j < num.length-1; j++){
  15.                 swap(j, num);
  16.             }
  17.         
  18.         
  19.         }
  20.         return num;
  21.     }
  22.     
  23.     public static void swap(int j, int [] num){
  24.         int temp;
  25.         if(num[j] > num[j+1]){
  26.             temp = num[j];
  27.             num[j] = num[j+1];
  28.             num[j+1] = temp;
  29.         }
  30.     
  31.     }


  32. }

阅读(1588) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~