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

快排Java模板

时间:2020-03-06 17:17:01      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:put   temp   tst   while   ++i   red   str   NPU   int()   

import java.util.Scanner;
import java.io.BufferedInputStream;
public class Main{
    public static void quickSort(int[] q,int l,int r){
        if(l>=r) return;
        int x=q[(l+r)>>1],i=l-1,j=r+1;
        while(i<j){
            do ++i; while(q[i]<x);
            do --j; while(q[j]>x);
            if(i<j){
                int temp=q[i];
                q[i]=q[j];
                q[j]=temp;
            }
        }
        quickSort(q,l,j);
        quickSort(q,j+1,r);
    }
    public static void main(String[] args){
        Scanner sc=new Scanner(new BufferedInputStream(System.in));
        int len=sc.nextInt();
        int[] q=new int[len];
        for(int x=0;x<len;++x){
            q[x]=sc.nextInt();
        }
        quickSort(q,0,len-1);
        for(int x:q){
            System.out.print(x+" ");
        }
    }
}

快排Java模板

标签:put   temp   tst   while   ++i   red   str   NPU   int()   

原文地址:https://www.cnblogs.com/INnoVationv2/p/12427510.html

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