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

Algs4-2.1.11希尔排序序列改为存数组

时间:2018-10-27 10:26:08      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:shel   ted   amp   com   shell   ESS   .com   print   存储   

2.1.11将希尔排序中实时计算递增序列改为预先计算并存储在一个数组中。
public class Shell2
{
    public static void sort(Comparable[] a)
    {
        int N=a.length;
        int h=1;
        int[] SN=new int[20];
        int hMaxIndex=0;
        while (h<N/3)
        {
           SN[hMaxIndex]=h;
            h=3*h+1;
            hMaxIndex++;
        }

       
        for (int hIndex=hMaxIndex;hIndex>0;hMaxIndex--)
        {
            h=SN[hIndex];
            for (int i=h;i<N;i++)
            {
                for (int j=i;j>=h && less(a[j],a[j-h]);j-=h)
                    exch(a,j,j-h);
            }
        }
    }
   
    private static boolean less(Comparable v,Comparable w)
    { return v.compareTo(w)<0;}
   
    private static void exch(Comparable[] a,int i,int j)
    {
        Comparable t=a[i];
        a[i]=a[j];
        a[j]=t;
    }
   
    private static void show(Comparable[] a)
    {
        for (int i=0;i<a.length;i++)
            StdOut.print(a[i]+" ");
        StdOut.println();
    }
   
    public static boolean isSorted(Comparable[] a)
    {
        for (int i=0;i<a.length;i++)
            if(less(a[i],a[i-1])) return false;
        return true;
    }
   
  
}

Algs4-2.1.11希尔排序序列改为存数组

标签:shel   ted   amp   com   shell   ESS   .com   print   存储   

原文地址:https://www.cnblogs.com/longjin2018/p/9860018.html

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