Radix Sort

Radix sort is a sorting technique that sorts the elements by first grouping the individual digits of the same place value. Then, sort the elements according to their increasing/decreasing order.

Suppose, we have an array of 8 elements, first, we will sort elements based on the value of the unit place. Then, we will sort elements based on the value of the tenth place. This process goes on until the last significant place.

Let the initial array be [121, 432, 564, 23, 1, 45, 788]. It is sorted according to radix sort as shown in the figure below.

radix-sort-example-1

Please go through the Counting Sort before reading this article because counting sort is used as an intermediate sort in radix sort.

How Radix Sort Works?

Find the largest element in the array, i.e. max. Let X be the number of digits in max. X is calculated because we have to go through all the significant places of all elements. In this array [121, 432, 564, 23, 1, 45, 788], we have the largest number 788. It has 3 digits. Therefore, the loop should go up to hundreds place (3 times).

Now, go through each significant place one by one. Use any stable sorting technique to sort the digits at each significant place. We have used counting sort for this.

1. Sort the elements based on the unit place digits.

radix-sort-example-2-1

2. Now, sort the elements based on digits at tens place.

radix-sort-example-2-2

3. Finally, sort the elements based on the digits at hundreds place.

radix-sort-example-2-3

Radix Sort Algorithm

radixSort(array)
  d <- maximum number of digits in the largest element
  create d buckets of size 0-9
  for i <- 0 to d
    sort the elements according to ith place digits using countingSort

countingSort(array, d)
  max <- find largest element among dth place elements
  initialize count array with all zeros
  for j <- 0 to size
    find the total count of each unique digit in dth place of elements and
    store the count at jth index in count array
  for i <- 1 to max
    find the cumulative sum and store it in count array itself
  for j <- size down to 1
    restore the elements to array
    decrease count of each element restored by 1

Radix Sort C Program

Code

#include <stdio.h>

// Function to get the largest element from an array
int getMax(int array[], int n) {
  int max = array[0];
  int i;
  for (i=1; i < n; i++)
    if (array[i] > max)
      max = array[i];
  return max;
}

// Using counting sort to sort the elements in the basis of significant places
void countingSort(int array[], int size, int place) {
  int output[size + 1];
  int max = (array[0] / place) % 10;
  int i; 
  for (i = 1; i < size; i++) {
    if (((array[i] / place) % 10) > max)
      max = array[i];
  }
  int count[max + 1];
  for (i = 0; i < max; ++i)
    count[i] = 0;

  // Calculate count of elements
  for (i = 0; i < size; i++)
    count[(array[i] / place) % 10]++;
    
  // Calculate cumulative count
  for (i = 1; i < 10; i++)
    count[i] += count[i - 1];

  // Place the elements in sorted order
  for (i = size - 1; i >= 0; i--) {
    output[count[(array[i] / place) % 10] - 1] = array[i];
    count[(array[i] / place) % 10]--;
  }

  for (i = 0; i < size; i++)
    array[i] = output[i];
}

// Main function to implement radix sort
void radixsort(int array[], int size) {
  // Get maximum element
  int max = getMax(array, size);
  int place;
  // Apply counting sort to sort elements based on place value.
  for (place = 1; max / place > 0; place *= 10)
    countingSort(array, size, place);
}

// Print an array
void printArray(int array[], int size) {
	int i;
  for (i = 0; i < size; ++i) {
    printf("%d  ", array[i]);
  }
  printf("\n");
}

// Driver code
int main() 
{
  int array[] = {121, 432, 564, 23, 1, 45, 788};
  int n = sizeof(array) / sizeof(array[0]);
  printf("Radix Sort\n\n");
  printf("Unsorted Array: ");
  printArray(array, n);
  
  printf("Sorted Array: ");
  radixsort(array, n);
  printArray(array, n);
  
  return 0;
}

Output

Radix Sort

Unsorted Array: 121  432  564  23  1  45  788
Sorted Array: 1  23  45  121  432  564  788

Complexity

Since radix sort is a non-comparative algorithm, it has advantages over comparative sorting algorithms.

For the radix sort that uses counting sort as an intermediate stable sort, the time complexity is O(d(n+k)). Here, d is the number cycle and O(n+k) is the time complexity of counting sort.

Thus, radix sort has linear time complexity which is better than O(nlog n) of comparative sorting algorithms.

If we take very large digit numbers or the number of other bases like 32-bit and 64-bit numbers then it can perform in linear time however the intermediate sort takes large space. This makes radix sort space inefficient. This is the reason why this sort is not used in software libraries.

Radix Sort Applications

Radix sort is implemented in

  • DC3 algorithm (Kärkkäinen-Sanders-Burkhardt) while making a suffix array.
  • Places where there are numbers in large ranges.

Trending

C Programming

Remember to follow community guidelines and don't go off topic.