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

快速排序算法

时间:2014-05-30 08:03:25      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

快排,从小到大排序

bubuko.com,布布扣
 1 void quicksort(int a[],int low,int high)
 2 {
 3     int i=low;
 4     int j=high;
 5     int temp=a[i];
 6     if(i<j)
 7     {
 8         while(i<j)
 9         {
10             while(a[j]>=temp&&i<j) j--;                             
11             a[i]=a[j];
12             while(a[i]<=temp&&i<j) i++;
13             a[j]=a[i];
14         } 
15         a[i]=temp;
16         quicksort(a,low,i-1);
17         quicksort(a,j+1,high);
18     }
19     else return;   
20 }
bubuko.com,布布扣

 

快速排序算法,布布扣,bubuko.com

快速排序算法

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/lqquan/p/3756877.html

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