This articleneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources. Unsourced material may be challenged and removed. Find sources: "Pigeonhole sort" – news ·newspapers ·books ·scholar ·JSTOR(July 2017) (Learn how and when to remove this message) |
| Class | Sorting algorithm |
|---|---|
| Data structure | Array |
| Worst-caseperformance | , whereN is the range of key values andn is the input size |
| Worst-casespace complexity | |
| Optimal | If and only if |
Pigeonhole sorting is asorting algorithm that is suitable for sorting lists of elements where the numbern of elements and the lengthN of the range of possible key values are approximately the same.[1] It requiresO(n +N) time. It is similar tocounting sort, but differs in that it "moves items twice: once to the bucket array and again to the final destination [whereas] counting sort builds an auxiliary array then uses the array to compute each item's final destination and move the item there."[2]
The pigeonhole algorithm works as follows:
Below is an implementation of Pigeonhole sort inpseudocode. This function sorts the array in-place and modifies the supplied array.
function pigeonhole(array arr)is min ←min(arr) max ←max(arr) index ← 0 range ← max - min + 1array tmp ← new array of length rangefor i = 0to rangeSTEP 1 tmp[i] = 0for i = 0tolength(arr)STEP 1 tmp[arr[i] - min] = tmp[arr[i] - min] + 1for i = 0to rangeSTEP 1while tmp[i] > 0do tmp[i] = tmp[i] - 1 arr[index] = i + min index = index + 1
Suppose one were sorting these value pairs by their first element:
For each value between 3 and 8 we set up a pigeonhole, then move each element to its pigeonhole:
The pigeonhole array is then iterated over in order, and the elements are moved back to the original list.
The difference between pigeonhole sort and counting sort is that in counting sort, the auxiliary array does not contain lists of input elements, only counts:
For arrays whereN is much larger thann,bucket sort is a generalization that is more efficient in space and time.