You are on page 1of 6

Shellsort

http://www.iti.fh-flensburg.de/lang/algorithmen/sortieren/shell/shellen.htm

Sorting algorithms

Shellsort
Shellsort is one of the oldest sorting algorithms, named after its inventor D.L. Shell (1959) [She 59]. It is fast, easy to understand and easy to implement. However, its complexity analysis is a little more sophisticated.

Idea
The idea of Shellsort is the following: a. arrange the data sequence in a two-dimensional array b. 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 8 4 2 0 6 1 5 7 3 4 9 8 2 3 3 2 0 5 1 5 7 4 4 0 6 1 6 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 0 5 4 1 7 8 3 5 7 0 6 9 2 2 1 4 6 8 9 0 1 3 4 5 7 8 0 2 3 5 6 7 9 1 2 4 6 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.

Implementation
Actually, 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. The following 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 1391376 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) etc. Algorithm Shellsort void shellsort (int[] a, int n) { int i, j, k, h, v;

1 of 6

2/6/2012 4:21 PM

Shellsort

http://www.iti.fh-flensburg.de/lang/algorithmen/sortieren/shell/shellen.htm

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; } } }

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 few Insertion Sort steps are sufficient. How many exactly will be the subject of the following analysis. The above sequence of h's (denoted as h-sequence in the following) is just one of several possible; actually, the performance of Shellsort depends on which h-sequence is used. Basics The postage for a letter is 16 , for a postcard it is 11 . But there are only stamps of 3 and 7 available. Is it possible to stamp the letter and the postcard exactly? Obviously, the problem is to represent the numbers 16 and 11 as linear combinations k3 + l7 with nonnegative integer coefficients k and l. Which natural numbers can be combined from multiples of 3 and 7 and which cannot? Definition: Let g, h . We call a number f a combination of g and h, if f can be represented as a linear combination f = kg + lh with coefficients k, l .
0 F F F F

The letter can be stamped exactly, since 16 is a combination of 3 and 7, namely 16 = 33 + 17. Definition: Let g, h be relatively prime. With N(g, h) we denote the (finite) set of all natural numbers that are not combinations of g and h and with (g, h) the largest of these numbers:

N(g, h) = { f

| k, l

: f = kg + lh }

(g, h) = max(N(g, h)) Example: Let g = 3, h = 7. Then

N(g, h) = {1, 2, 4, 5, 8, 11}, and (g, h) = 11


The postcard cannot be stamped exactly, since 11 is not a combination of 3 and 7. Proposition: Let g, h be relatively prime. Then

(g, h) = (g-1)(h-1) 1 i.e. every number f with f (g-1)(h-1) is a combination of g and h.

2 of 6

2/6/2012 4:21 PM

Shellsort

http://www.iti.fh-flensburg.de/lang/algorithmen/sortieren/shell/shellen.htm

Proof: (Exercise)

h-sortedness
Definition: Let h
0

. A sequence a ..., a is called h-sorted, if for all i


1,

{1, ..., n-h} it holds that

ai

ai+h

A h-sorted sequence is obtained by arranging the sequence in an array with h columns and then sorting the columns. A 1-sorted sequence is sorted. Proposition: Let g, h Proof: see [Knu 73] Definition: A sequence that is g-sorted and h-sorted is called g,h-sorted. Proposition: A g,h-sorted sequence is g+h-sorted. Proof: We have to show that for all i {1, ..., n-(g+h)} it holds that . A g-sorted sequence remains g-sorted after h-sorting it.

ai

ai+g+h
i

But this is the case because a is h-sorted.

ai+g, since the sequence is g-sorted, and ai+g

ai+g+h, since the sequence

As an immediate consequence, we have the following Proposition: If a sequence is g,h-sorted, then it is kg+lh-sorted for all k, l each f that is a combination of g and h. Proposition: Let a be a g,h-sorted sequence, where g and h are relatively prime. Then for all elements a and a
i

, i.e. the sequence is f-sorted for

the following holds:

ji

(g-1)(h-1)
i

ai

aj

i.e. to the right of each a only the next (g-1)(h-1) 1 elements can be smaller. Proof: Let j i = f means that (g-1)(h-1), then f is a combination of g and h. Therefore the sequence is f-sorted, which

ai

ai+f = aj

Proposition: Let a be a g,h-sorted sequence, where g and h are relatively prime, and let d be a variable. If both g and h are in O(d), then O(nd) sorting steps are sufficient for d-sorting the sequence. Proof: To the right of each element a at most (g-1)(h-1) 1 elements are smaller. d-sorting the sequence means
i

arranging it as a two-dimensional array with d columns and sorting the columns. In the column under a only every d-th of these smaller elements can occur. This means that a has to be
i i

exchanged with at most ((g-1)(h-1) 1) / d elements or, since g and h are in O(d), with O(d) elements. Since this holds for all a (i = 1, ..., n), there are O(nd) sorting steps needed for d-sorting the sequence.
i

3 of 6

2/6/2012 4:21 PM

Shellsort

http://www.iti.fh-flensburg.de/lang/algorithmen/sortieren/shell/shellen.htm

From this proposition upper bounds for the complexity of Shellsort can be derived. Upper bounds Theorem: With the h-sequence 1, 3, 7, 15, 31, 63, 127, ..., 2 1, ... Shellsort needs O(n n) steps for sorting a sequence of length n (Papernov/Stasevic [PS 65]). Proof: Let h be the h closest to
t k

n. We analyze the behavior of Shellsort separately for the elements hk with k

t and with k > t.


Let k

t. Since hk = 2k 1 we have the conditions mentioned above that hk+1 and hk+2 are relatively prime
k k k k

and in O(h ). Therefore, O(nh ) sorting steps suffice for h -sorting the data sequence. Since the h form a geometric series, the sum of all h with k = 1, ..., t is in O(h ) = O( n). Thus O(n n) sorting steps are
k t

needed for this part where k

t.

Now let k > t. When the sequence is arranged as an array with hk columns there are n/hk elements in each column. Thus, O((n/h ) ) sorting steps are needed to sort each column, since Insertion Sort has quadratic
k
2

complexity. There are h columns, therefore the number of sorting steps for h -sorting the entire data
k k

sequence is in O((n/h ) h ) = O(nn/h ). Again, the n/h form a geometric series whose sum is in
k k k k

O(n/ht) = O( n). Therefore, again O(n n) steps are needed for this part where k > t.
It can be shown that for this h-sequence the upper bound is tight. But there is another h-sequence that leads to a more efficient behavior of Shellsort. Theorem: With the h-sequence 1, 2, 3, 4, 6, 8, 9, 12, 16, ..., 2p3q, ... Shellsort needs O(nlog(n)2) steps for sorting a sequence of length n (Pratt [Pra 79]). Proof: If g = 2 and h = 3, then (g, h) = (g-1)(h-1) 1 = 1, i.e. in a 2,3-sorted sequence to the right of each element only the next element can be smaller. Therefore, O(n) sorting steps suffice to sort the sequence with Insertion Sort. Considering elements with odd and with even index separately, it becomes clear that again O(n) sorting steps suffice to make a 4,6-sorted sequence 2-sorted. Similarly, O(n) sorting steps suffice to make a 6,9-sorted sequence 3-sorted and so on. The above h-sequence has the property that for each h also 2h and 3h occurs, so O(n) sorting steps
k k k

suffice for each h . Altogether there are log(n) elements in the h-sequence; thus the complexity of Shellsort
k

with this h-sequence is in O(nlog(n) ). The h-sequence of Pratt performs best asymptotically, but it consists of log(n) elements. Particularly, if the data sequence is presorted, a h-sequence with less elements is better, since the data sequence has to be scanned (by the for-i-loop in the program) for each h , even if only a few sorting steps are performed.
k
2

By combining the arguments of these two theorems h-sequences with O(log(n)) elements can be derived that lead to a very good performance in practice, as for instance the h-sequence of the program (Sedgewick [Sed 96]). But unfortunately, there seems to be no h-sequence that gives Shellsort a worst case performance of O(nlog(n)) (see [Sed 96]). It is an open question whether possibly the average complexity is in O(nlog(n)).

Sorting network
Shellsort can be implemented as a sorting network if the data-dependent Insertion Sort is replaced with Bubble Sort. With the h-sequence 2 3 the sorting network consists of O(nlog(n) ) comparators. This is the same
p q
2

4 of 6

2/6/2012 4:21 PM

Shellsort

http://www.iti.fh-flensburg.de/lang/algorithmen/sortieren/shell/shellen.htm

number of comparators as in Bitonic Sort. The following figure shows the corresponding sorting network for n = 8.

Figure 1: Shellsort network for n=8

Simulation

References
Shellsort was originally published by D.L. Shell [She 59]. [Knu 73] [Pra 79] [PS 65] [Sed 88] [Sed 96] D.E. KNUTH: The Art of Computer Programming, Vol. 3 - Sorting and Searching. AddisonWesley (1973) V. PRATT: Shellsort and Sorting Networks. Garland, New York (1979) A. PAPERNOV, G. STASEVIC: A Method of Information Sorting in Computer Memories. Problems of Information Transmission 1, 63-75 (1965) R. SEDGEWICK: Algorithms. 2nd edition, Addison-Wesley (1988) R. SEDGEWICK: Analysis of Shellsort and Related Algorithms. In: Josep Daz, Maria Serna (Eds.): Algorithms - ESA '96, Fourth Annual European Symposium, Barcelona, Lecture Notes in Computer Science, Vol. 1136, Springer, 1-11 (1996) D.L. SHELL: A High-Speed Sorting Procedure. Communications of the ACM, 2, 7, 30-32 (1959)

[She 59]

5 of 6

2/6/2012 4:21 PM

Shellsort

http://www.iti.fh-flensburg.de/lang/algorithmen/sortieren/shell/shellen.htm

Next: H.W. Lang FH Flensburg lang@fh-flensburg.de Impressum Created: 29.01.1998 Updated: 18.05.2010

6 of 6

2/6/2012 4:21 PM

You might also like