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

希尔排序

时间:2016-03-15 14:54:25      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

public class ArraySh {
    private long[] theArray;
    private int nElems;

    public ArraySh(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 shellSort(){
        int inner,outer;
        long temp;
        int h=1;
        while(h<=nElems/3){//find initial value of h
            h=h*3+1;//1 4 13 40 121
        }
        while(h>0){//decreasing h ,until h=1
            for(outer=h;outer<nElems;outer++){
                temp=theArray[outer];
                inner=outer;
                while(inner>h-1&&theArray[inner-h]>=temp){
                    theArray[inner]=theArray[inner-h];
                    inner-=h;
                }
                theArray[inner]=temp;
            }
            h=(h-1)/3;
        }
    }
}
public class ShellSortApp {
    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        int maxSize=10;
        ArraySh arr;
        arr =new ArraySh(maxSize);
        for(int j=0;j<maxSize;j++){
            long n=(int) (Math.random()*99);
            arr.insert(n);
        }
        arr.display();
        arr.shellSort();
        arr.display();
    }
}

希尔排序

标签:

原文地址:http://blog.csdn.net/yrp_ssdut/article/details/50895999

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