Shell Sort Algorithm

Shell sort is an algorithm that first sorts the elements far apart from each other and successively reduces the interval between the elements to be sorted. It is a generalized version of insertion sort.
In shell sort, elements at a specific interval are sorted. The interval between the elements is gradually decreased based on the sequence used. the performance of the shell sort depends on the type of sequence used for a given input array.
Some of the optimal sequences used are:
  • Shell’s original sequence: N/2 , N/4 , …, 1
  • Knuth’s increments: 1, 4, 13, …, (3k – 1) / 2
  • Sedgewick’s increments: 1, 8, 23, 77, 281, 1073, 4193, 16577...4j+1+ 3·2j+ 1.
  • Hibbard’s increments: 1, 3, 7, 15, 31, 63, 127, 255, 511…
  • Papernov & Stasevich increment: 1, 3, 5, 9, 17, 33, 65,...
  • Pratt: 1, 2, 3, 4, 6, 9, 8, 12, 18, 27, 16, 24, 36, 54, 81....

How Shell Sort Works?

    1. Suppose, we need to sort the following array.
      Shell sort step
    2. We are using the shell’s original sequence (N/2, N/4, ...1) as intervals in our algorithm.

      In the first loop, if the array size is N = 8 then, the elements lying at the interval of N/2 = 4 are compared and swapped if they are not in order.
      1. The 0th element is compared with the 4th element.
      2. If the 0th element is greater than the 4th one then, the 4th element is first stored in temp variable and the 0th element (ie. greater element) is stored in the 4th position and the element stored in temp is stored in the 0th position.
      Shell Sort step

      This process goes on for all the remaining elements.
      Shell Sort steps
    3. In the second loop, an interval of N/4 = 8/4 = 2 is taken and again the elements lying at these intervals are sorted.
      Shell Sort step

      You might get confused at this point.
      Shell Sort step

      The elements at 4th and 2nd position are compared. The elements at 2nd and 0th position are also compared. All the elements in the array lying at the current interval are compared.
       
    4. The same process goes on for remaining elements.
      Shell Sort step
    5. Finally, when the interval is N/8 = 8/8 =1 then the array elements lying at the interval of 1 are sorted. The array is now completely sorted.
      Shell Sort step
    // Shell Sort in C programming
    
    #include <stdio.h>
    
    void shellSort(int array[], int n){
      for (int gap = n/2; gap > 0; gap /= 2){
        for (int i = gap; i < n; i += 1) {
          int temp = array[i];
          int j;
          for (j = i; j >= gap && array[j - gap] > temp; j -= gap){
            array[j] = array[j - gap];
          }
          array[j] = temp;
        }
      }
    }
    void printArray(int array[], int size){
      for(int i=0; i<size; ++i){
         printf("%d  ", array[i]);
      }
      printf("\n");
    }
    int main(){
      int data[]={9, 8, 3, 7, 5, 6, 4, 1}; 
      int size=sizeof(data) / sizeof(data[0]); 
      shellSort(data, size); 
      printf("Sorted array: \n"); 
      printArray(data, size);
    }

    Comments