码迷,mamicode.com
首页 > 其他好文 > 详细

备忘1:冒泡排序

时间:2014-06-27 13:27:29      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   for   

 1 int[] nums={1,3,5,7,9,2,4,6,8};//定义数组
 2 int temp=0;// 定义临时变量
 3 for(int i=0;i<nums.Length-1;i++)//外层比较N-1次
 4 {
 5   for(int j=0;j<nums.Length-1-j;j++)//里层比较N-1-i次
 6   {
 7     if(nums[j]>nums[j+1])//如果前面一个数字大于后面一个数字,就交换大小
 8     {
 9       temp=nums[j];
10       nums[j]=nums[j+1];
11       nums[j+1]=temp;
12     }
13 }      
14 }

 

 

 

备忘1:冒泡排序,布布扣,bubuko.com

备忘1:冒泡排序

标签:style   class   blog   code   color   for   

原文地址:http://www.cnblogs.com/milovetingting/p/3810489.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!