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

快排算法实现

时间:2014-09-09 11:15:48      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   div   sp   log   c   

public class QuickSort {
    
    public static void sort(int arr[],int low,int high){
        int l=low;
        int h=high;
        int temp=arr[low];
        while(l<h)
        {
            while(l<h&&arr[h]>=temp) h--;
            arr[l]=arr[h];
            while(l<h&&arr[l]<=temp) l++;
            arr[h]=arr[l];
        }
        System.out.println("h:"+h+" l:"+l);
        arr[l]=temp;
        if(l>low)sort(arr,low,h-1);
        if(h<high)sort(arr,l+1,high);
    }
    
    public static void main(String[] args)
    {
        int a[]={5,8,7,1,3,2,6,4};
        sort(a,0,a.length-1);
        for(int i=0;i<a.length;i++)
            System.out.print(a[i]+" ");
    }

}

 

快排算法实现

标签:style   blog   color   ar   for   div   sp   log   c   

原文地址:http://www.cnblogs.com/sunrunzhi/p/3961570.html

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