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

快排模板

时间:2014-08-25 14:48:44      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   div   log   sp   c   as   class   

 1 void my_sort(int l,int r)
 2 {
 3     int i=l,j=r,mid=a[(l+r)>>1];
 4     while (i<=j)
 5     {
 6         while (a[i]<mid)
 7             i++;
 8         while (a[j]>mid)
 9             j--;
10         if (i<=j)
11         {
12             swap(a[i],a[j]);
13             i++;
14             j--;
15         }
16     }
17     if (j>l)
18         my_sort(l,j);
19     if (i<r)
20         my_sort(i,r);
21 }

 

快排模板

标签:style   blog   color   div   log   sp   c   as   class   

原文地址:http://www.cnblogs.com/vb4896/p/3934868.html

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