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

快速排序

时间:2016-07-06 00:23:54      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

妹的,写了那么多的东西,网页卡死了,编辑不了了。快排的描述就不写了,直接上代码

QuickSort(DataType Arry[],int low,int hight)

{

int i= low;

int j=hight;

int temp = Arry[i];

while(i<j)

{

  while(i<j && temp > Arry[j])i++;

  if(i<j)

  {

  Arry[j] = Arry[i];

  j--;

  }

  while(i<j &&temp < Arry[i])j--;

  if(i<j)

  {

    Arry[i] = Arry[j];

    i++;

  }

  Arry[i] = temp;

  if(low < i) QuickSort(Arry,low,i-1);

  if(i<hight)QuickSort(Arry,j+1,hight);

}

}

快速排序

标签:

原文地址:http://www.cnblogs.com/first-semon/p/5645255.html

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