快速排序一

Posted ssdut_yrp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快速排序一相关的知识,希望对你有一定的参考价值。

public class ArrayIns 
    private long[] theArray;
    private int nElems;

    public ArrayIns(int max)
        theArray=new long[max];
        nElems=0;
    

    public void insert(long value)
        theArray[nElems]=value;
        nElems++;
    

    public int size()
        return nElems;
    

    public void display()
        System.out.print("A=");
        for(int j=0;j<nElems;j++)
            System.out.print(theArray[j]+" ");
        System.out.println("");
    

    public int partitionIt(int left,int right,long pivot)
        int leftPtr=left-1;
        int rightPtr=right;
        while(true)
            while(theArray[++leftPtr]<pivot)
            
            while(rightPtr>0&&theArray[--rightPtr]>pivot)
            
            if(leftPtr>=rightPtr)
                break;
            else
                swap(leftPtr,rightPtr);
            
        
        swap(leftPtr,right);
        return leftPtr;
    

    public void swap(int dex1,int dex2)
        long temp=theArray[dex1];
        theArray[dex1]=theArray[dex2];
        theArray[dex2]=temp;
    



    public void quickSort()
        recQuickSort(0,nElems-1);
    

    public void recQuickSort(int left,int right)
        if(right-left<=0)
            return;
        else
            long pivot = theArray[right];
            int partition = partitionIt(left,right,pivot);
            recQuickSort(left,partition-1);
            recQuickSort(partition+1,right);
        
    
public class QuickSortApp 
    /**
     * @param args
     */
    public static void main(String[] args) 
        // TODO Auto-generated method stub
        int maxSize=16;
        ArrayIns arr;
        arr = new ArrayIns(maxSize);
        for(int j=0;j<maxSize;j++)
            long n=(int)(Math.random()*99);
            arr.insert(n);
        
        arr.display();
        arr.quickSort();
        arr.display();
    

以上是关于快速排序一的主要内容,如果未能解决你的问题,请参考以下文章

❤️数据结构入门❤️(4 - 5)- 快速排序

排序算法一:快速排序,大家中秋佳节快乐!

数据结构学习笔记——交换排序(冒泡排序和快速排序)

数据结构学习笔记——交换排序(冒泡排序和快速排序)

快速排序就是这么容易

快速排序