希尔排序 Java实现

希尔排序实际上是针对插入排序的一种优化算法。当被插入的元素要移动到数组的开始位置时需要比较的次数相当大,通过改变相邻的元素比较为距离间隔为h的元素比较(h逐渐减小为1)就能减少比较的次数。
代码如下:

public class Tester {

    private static final int N = 10;

    public static void main(String[] args){
        Random random = new Random();
        int[] t = new int[N];
        for(int i=0;i<N;i++){
            t[i]=random.nextInt(80);
        }
        shellSort(t);
        for(int a :t){
            System.out.print(a+"\t");
        }
    }



    /*
     * 将数组中下标为i与下标为k的数进行交换
     */
    public static void swap(int[] t,int i,int j){
        int temp = t[i];
        t[i]=t[j];
        t[j]=temp;
    }

    public static void shellSort(int[] t){
        int length = t.length;
        int h=1;
        while(h<length){h=h*3+1;}
        while(h>=1){
            for(int i=h;i<length;i++){
                //进行插入排序 t[j] t[j-h] t[j-2h]...
                for(int j=i;j>=h && t[j]<t[j-h];j-=h){
                    swap(t,j,j-h);
                }
            }
            h=h/3;
        }
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值