加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

java快速排序算法实现

发布时间:2020-12-15 00:12:20 所属栏目:Java 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 public class ArrayIns { private long[] theArray; private int nElems; public ArrayIns(int max) { theArray = new long[max]; nElems = 0; } pu

以下代码由PHP站长网 52php.cn收集自互联网

现在PHP站长网小编把它分享给大家,仅供参考

 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 void display() {
        System.out.print("A=");
        for(int j=0; j<nElems; j++)
            System.out.print(theArray[j] + " ");
        System.out.println("");
     }
     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 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;
     }
 }  
 /*  * 程序随机产生16个2位随机数,显示这16个随机数后,对其进行快速排序并输出。  * [email?protected]  */  
 package linzhanghui.quicksort;  
 public class QuickSortApp {
    public static void main(String[] args) {
        int maxSize = 16;
        ArrayIns arr;
        arr = new ArrayIns(maxSize);
        for(int j=0; j<maxSize; j++) {
            long n = (int)(java.lang.Math.random()*99);
            arr.insert(n);
        }  
        arr.display();
        arr.quickSort();
        arr.display();
    } 
}

以上内容由PHP站长网【52php.cn】收集整理供大家参考研究

如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读