FACTOID # 163: Only 4% of married women in Chad are using contraceptives.
 
 Home   Encyclopedia   Statistics   Countries A-Z   Flags   Maps   Education   Forum   FAQ   About 
 
WHAT'S NEW
RELATED ARTICLES
People who viewed "Shellsort" also viewed:
RECENT ARTICLES
More Recent Articles »
 

FACTS & STATISTICS    Simple view

  1. Select countries to view: (hold down Control key and click to select several)

     

     

    Compare:

     

     

  1. Select fact or statistic: (* = graphable)

     

     

     

  2. (OPTIONAL) Compare to statistic: (both need to be graphable)

     

     

     

  3. View result as:

     

       
(OR) SEARCH ALL encyclopedia, stats & forums:   

Encyclopedia > Shellsort

Shell sort (or Shellsort) is one of the oldest sorting algorithms. It was invented in 1959 by Donald L. Shell [Sh]. It is fast, easy to understand and easy to implement. However, its complexity analysis is a little more sophisticated. It is easy to develop an intuitive sense of how this algorithm works, but often difficult to analyze its execution time.

Contents

Basic concept

Shell sort is really just an extension of insertion sort, with two observations in mind:

  1. Insertion sort is efficient if the input is almost sorted.
  2. Insertion sort is inefficient, on average, because it moves values just one position at a time.

Shell sort is similar to insertion sort, but it works by taking bigger steps as it rearranges values, gradually decreasing the step size down towards one. In the end, Shell sort performs a regular insertion sort, but by then, the array of data is guaranteed to be almost sorted.


Consider a small value that is initially stored in the wrong end of the array. Using insertion sort, it will take roughly n comparisons and exchanges to move this value all the way to the other end of the array. With Shell sort, we'll first move values using giant step sizes, so a small value will move a long way towards its final position, with just a few comparisons and exchanges.


The idea of Shell sort can be illustrated in the following way:

  • arrange the data sequence in a two-dimensional array
  • sort the columns of the array

The effect is that the data sequence is partially sorted. The process above is repeated, but each time with a narrower array, i.e. with a smaller number of columns. In the last step, the array consists of only one column. In each step, the sortedness of the sequence is increased, until in the last step it is completely sorted. However, the number of sorting operations necessary in each step is limited, due to the presortedness of the sequence obtained in the preceding steps.


Example

Let

 3 7 9 0 5 1 6 8 4 2 0 6 1 5 7 3 4 9 8 2 

be the data sequence to be sorted. First, it is arranged in an array with 7 columns (left), then the columns are sorted (right):

 3 7 9 0 5 1 6 3 3 2 0 5 1 5 8 4 2 0 6 1 5 -> 7 4 4 0 6 1 6 7 3 4 9 8 2 8 7 9 9 8 2 

Data elements 8 and 9 have now already come to the end of the sequence, but a small element (2) is also still there. In the next step, the sequence is arranged in 3 columns, which are again sorted:

 3 3 2 0 0 1 0 5 1 1 2 2 5 7 4 3 3 4 4 0 6 -> 4 5 6 1 6 8 5 6 8 7 9 9 7 7 9 8 2 8 9 

Now the sequence is almost completely sorted. When arranging it in one column in the last step, it is only a 6, an 8 and a 9 that have to move a little bit to their correct position.


In reality, the data sequence is not arranged in a two-dimensional array, but held in a one-dimensional array that is indexed appropriately. For instance, data elements at positions 0, 5, 10, 15, etc. would form the first column of an array with 5 columns. The "columns" obtained by indexing in this way are sorted with Insertion sort, since this method has a good performance with presorted sequences.


Analysis

The correctness of the algorithm follows from the fact that in the last step (with h = 1) an ordinary insertion sort is performed on the whole array. But since data are presorted by the preceding steps (h = 3, 7, 21, ...), only a few insertion sort steps are sufficient. The exact number depends on the sequence of h values (denoted as h-sequence). The h-sequence above is just one of several possible.


(Pratt)With the h-sequence 1, 2, 3, 4, 6, 8, 9, 12, 16, ..., 2p3q, ... Shellsort needs O(n·log(n)2) steps for sorting a sequence of length n.


(Hibbard) With the h-sequence 1, 3, 7, 15, 31, 63, 127, ..., 2k - 1, ... Shellsort needs O(n3/2) steps for sorting a sequence of length n.


(Knuth) With the h-sequence 1, 4, 13, 40, 121, ..., 3hs-1 + 1 = (3s - 1)/2, ... Shellsort needs O(n3/2) steps for sorting a sequence of length n.


(Sedgewick) With the h-sequence 1, 5, 19, 41, 109, 209, ... (described below), Shellsort needs O(n4/3) steps for sorting a sequence of length n.

(Insertion sort) The worst case of Shell sort is the basic insertion sort (using a single h-step of 1), which requires O(n²) comparisons and exchanges.


An easily computable h-sequence for Shell sort is the Fibonacci Sequence (1, 2, 3, 5, 8, 13, 21, ... ), which increases step size in a natural progression.


Implementations

The following Java program sorts an array a from index position 0 through n-1. The number of columns used for arranging data in each step is in array cols. Thus, data are arranged in 1,391,376 columns in the first step and in one column in the last step. Note that essentially nothing is done if the number of columns h is larger than the number of data elements n. Each column is sorted by insertion sort. First, data of the second row, beginning at i = h, are sorted to the correct position in their column, then data of the third row (when i reaches value 2h) and so on.


Using a list of shell sizes

 void shellsort (int[] a, int n) { int i, j, k, h, v; int[] cols= {1391376, 463792, 198768, 86961, 33936, 13776, 4592, 1968, 861, 336, 112, 48, 21, 7, 3, 1}; for (k=0; k<16; k++) { h=cols[k]; for (i=h; i<n; i++) { v=a[i]; j=i; while (j>=h && a[j-h]>v) { a[j]=a[j-h]; j=j-h; } a[j]=v; } } } 

Using fibonacci numbers

 void shellsort (int[] a, int n) { int h=1, hh=1; while(hh<n) { // eg, h = 5, hh = 8 hh=hh+h; // hh = 8 + 5 = 13 h=hh-h; // h = 13 - 5 = 8 } while(hh > 1) { int i, j, v; for (i=h; i<n; i++) { v=a[i]; j=i; while (j>=h && a[j-h]>v) { a[j]=a[j-h]; j=j-h; } a[j]=v; } // eg, h = 8, hh = 13 h = hh - h; // h = 13 - 8 = 5 hh = hh - h; // hh = 13 - 5 = 8 } } 

Using a list of shell sizes in C Edit By Z80user

table[] is table to sort table_size is ...

 int tabla[]= {10,9,8,7,6,5,4,3,2,1}; int cols[]= {1391376,463792,198768,86961,33936,13776,4592,1968,861,336,112,48,21,7,3,1}; int table_size=10; // change it int n,m,h,j,v; for (n=0;n<16;n++) { h=cols[n]; for (m=0;m<table_size;m++) { v=tabla[m]; j=m; while (j>=h && tabla[j-h]>v) { tabla[j]^=tabla[j-h]; // Swap data tabla[j-h]^=tabla[j]; // I Think java also need this change tabla[j]^=tabla[j-h]; // but i don`t have compiler of java j=j-h; } } tabla[j]=v; } 

References

[Kn] D.E. Knuth: Sorting and Searching, vol. 3 of The Art of Computer Programming. Addison-Wesley (1973)
[Se] R. Sedgewick: Algorithms. Addison-Wesley (1988)
[Sh] D.L. Shell: A high-speed sorting procedure. Communications of the ACM 2 (7), 30-32 (1959)


External links


  Results from FactBites:
 
Shellsort (1011 words)
Shellsort is one of the oldest sorting algorithms, named after its inventor D.L. Shell (1959) [Sh].
Shellsort can be implemented as a sorting network if the data-dependent Insertion Sort is replaced with Bubble Sort.
Shellsort was originally published by D.L. Shell [Sh].
  More results at FactBites »


 

COMMENTARY     


Share your thoughts, questions and commentary here
Your name
Your comments
Please enter the 5-letter protection code

Want to know more?
Search encyclopedia, statistics and forums:

 


Lesson Plans | Student Area | Student FAQ | Reviews | Press Releases |  Feeds | Contact
The Wikipedia article included on this page is licensed under the GFDL.
Images may be subject to relevant owners' copyright.
All other elements are (c) copyright NationMaster.com 2003-5. All Rights Reserved.
Usage implies agreement with terms.