码迷,mamicode.com
首页 > 编程语言 > 详细

冒泡排序

时间:2017-07-05 21:06:48      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:ret   turn   color   排序   code   bubble   logs   span   sort   

C#

 1  public static int[] BubbleSort(int[] array)
 2         {
 3             int length = array.Length;
 4             for(int i=0;i<length-1;i++)
 5             {
 6                 for (int j = 0; j < length - i - 1; j++)
 7                 { 
 8                     if (array[j] >array[j+1])
 9                     {
10                         int temp = array[j];
11                         array[j] = array[j+1];
12                         array[j+1] = temp;
13                     }
14                 }
15             }
16 
17             return array;
18         }

 

冒泡排序

标签:ret   turn   color   排序   code   bubble   logs   span   sort   

原文地址:http://www.cnblogs.com/huangjianping/p/7123233.html

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