1. Overview

In this tutorial, we’ll learn about the pigeonhole sorting algorithm.

2. What Is Pigeonhole Sort?

Pigeonhole sort is appropriate for sorting arrays of elements where the number of elements in the array (\boldsymbol{n}) is close to the range of possible values inside the array (\boldsymbol{N}).

For example, if we had an array with elements {3, 8, 2, 1, 9, 5, 7, 7, 8}, n is 9, and N is 1 through 9, which equals 9. Therefore, we can use pigeonhole sort since n is equal to N.

Furthermore, pigeonhole sort requires \boldsymbol{O(n + N)} time.

3. How Does It Work?

Now let’s see how the sorting algorithm works.

3.1. Find the Range

First, we should find the range of possible values inside the array:

Rendered by QuickLaTeX.com

Now we can create pigeonholes with a size equal to N.

3.2. Fill the Pigeonholes

Now let’s create the pigeonholes and fill them:

Rendered by QuickLaTeX.com

The first line creates an array of vectors with the size of \boldsymbol{N}. Each vector is a pigeonhole that keeps equal elements.

After that, we go through the original array and put each element inside a pigeonhole with index arr[i] - min.

3.3. Fill the Original Array

Now that we have sorted the elements and put them into the pigeonholes, we should put them in the original array:

Rendered by QuickLaTeX.com

The above code iterates through the pigeonholes and copies each element into the original array.

4. An Example

Let’s assume we have arr = {3, 8, 2, 1, 9, 5, 7, 7, 8}.

In the first step, we calculate min = 1, max = 9, and N = 9.

In the second step, we create the pigeonholes and fill them:

Pigeonholes

In the third step, we copy the elements from the pigeonholes into the original array: {1, 2, 3, 5, 7, 7, 8, 8, 9}

We’ve successfully sorted the array.

5. Conclusion

In this tutorial, we learned how the pigeonhole sorting algorithm works and when it’s appropriate to use it.

Comments are open for 30 days after publishing a post. For any issues past this date, use the Contact form on the site.