基于java的数据结构学习手记12-使用Knuth序列的希尔排序

        希尔排序因计算机科学家Donald L.Shell而得名,他在1959年发现了希尔排序算法。希尔排序基于插入排序,但是增加了一个新的特性,大大地提高了插入排序的执行效率。希尔排序算法的代码短而简单,而且它在最坏情况下的执行效率和在平均情况下的执行效率相比没有差很多。

         插入排序算法:插入排序算法在执行到中间的时候,标记符指向的数的左边都是有序的,而标记右边的都是没有排序的。这个算法取出标记符指向的数据项,从其左边第一个数据项开始从右到左扫描,凡是比它大的数字都右移一位,最后插入。插入排序的问题是,假设一个很小的数据项在很靠近右边的位置上,在移动这个数据项的过程中要复制太多中间数据项,平均每个数据移动复制达N/2,插入排序执行效率为O(N2).

       如果某个算法能够不必一个一个移动所有中间数据项,就能把较少的数据项移动到左边,那么这个算法的执行效率就有很大的改进。

        希尔排序就是基于这种思想设计的。

   

希尔排序引入N-增量排序的概念,上图所示的为增量为4时的排序,即只对0,4,8排序,间隔为4.这步操作完成后指针右移一位对1,5,9排序,然后对2,6排序,最后是3,7排序。形成彼此交错互相独立的排序。

 减少间隔:当完成了间隔为4个排序后,再接着做间隔为1的插入排序,完成后则整个数组都会有序了。这个缩减间隔序列的数值是由knuth序列决定,即是公式3h+1序列(1,4,13,40,。。。)保证3h+1<maxItems(数组中数据项个数)得到最大的h值,然后按照h=(h-1)/3递减,直到h=1为止。

          需要指出的是,实际的计算中不没有完全按照以上的排序顺序,具体看图示:

代码 :

 

Code:
  1. package highSort;  
  2. //demonstrate shell sort  
  3. //  
  4. class ArraySh   
  5. {  
  6.     private long[] theArray;           //ref to array theArray  
  7.     private int nElems;                //number of data items  
  8. //-------------------------------------------------------------  
  9.     public ArraySh(int max) {  
  10.       theArray=new long[max];  
  11.       nElems=0;// TODO Auto-generated constructor stub  
  12.     }  
  13.     //------------------------------------------------------------  
  14.     public void insert(long value)    //put element into array  
  15.     {  
  16.         theArray[nElems]=value;       //insert it  
  17.         nElems++;                     //increment size  
  18.     }  
  19. //-------------------------------------------------------------  
  20.     public void display()             //display each items of the array  
  21.     {  
  22.         System.out.print("A=");  
  23.         for(int j=0;j
  24.             System.out.print(theArray[j]+" ");  
  25.         System.out.println(" ");  
  26.     }  
  27. //-------------------------------------------------------------  
  28.     public void shellSort()  
  29.     {  
  30.         int inner=0,outer=0;  
  31.         long temp=0;  
  32.         int h=1;                    //find initial value of h  
  33.         while(h<=nElems/3)          //1,4,13,40,121,...  
  34.             h=h*3+1;  
  35.         while(h>0)  
  36.         {  
  37.         for(outer=h;outer
  38.             {  
  39.                 temp=theArray[outer];  
  40.                 inner=outer;  
  41.               
  42.               while(inner>h-1&&theArray[inner-h]>=temp)  
  43.                 {  
  44.                 theArray[inner]=theArray[inner-h];  
  45.                 inner-=h;  
  46.                 }  
  47.             theArray[inner]=temp;  
  48.              }  
  49.             h=(h-1)/3;  
  50.          }  
  51.      }  
  52.       
  53. }  
Code:
  1. package highSort;  
  2.   
  3. public class ShellSortApp {  
  4.   
  5.     /** 
  6.      * @param args 
  7.      */  
  8.     public static void main(String[] args) {  
  9.         // TODO Auto-generated method stub  
  10.          int maxSize=1000;  
  11.          ArraySh arr;  
  12.          arr=new ArraySh(maxSize);  
  13.          for(int j=0;j
  14.          {  
  15.              long n=(int)(java.lang.Math.random()*1500);  
  16.              arr.insert(n);   
  17.          }  
  18.          arr.display();  
  19.          arr.shellSort();  
  20.          arr.display();  
  21.     }  
  22.   
  23. }  

随机生成1000个整数,进行希尔排序。

你可能感兴趣的:(基于java的数据结构学习手记12-使用Knuth序列的希尔排序)