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

快速排序实现

时间:2017-07-02 00:09:05      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:logs   quick   ret   ++   main   i++   blog   实现   for   

//快速排序
#include<stdio.h>
int partition(int *a,int s,int t){
    int i=s,j=t;
    int temp;
    do{
        while(i<j&&a[j]>=a[i]) j--;
        temp=a[i];a[i]=a[j];a[j]=temp;
        while(i<j&&a[i]<a[j]) i++;
        temp=a[i];a[i]=a[j];a[j]=temp;
        
    }while(i<j);
    return i; 
}
void QuickSort(int *a,int s,int t){
    int temp;
    if(s<t){
        temp=partition(a,s,t);
        QuickSort(a,s,temp-1);
        QuickSort(a,temp+1,t);
    }
} 
int main(){
    int arr[10]={3,1,6,3,8,3,9,12,9,0};
    QuickSort(arr,0,9);
    for(int i=0;i<10;i++){
        printf("%d ",arr[i]);
    }
}

 

快速排序实现

标签:logs   quick   ret   ++   main   i++   blog   实现   for   

原文地址:http://www.cnblogs.com/Elaine-DWL/p/7103805.html

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