Skip to content

Commit 11e5d22

Browse files
authored
Merge pull request #405 from KavinduDr/main
Added Pigeonhole Sort algorithm and update README to explain algorithm
2 parents 5033d88 + c6add60 commit 11e5d22

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Python program to implement Pigeonhole Sort
2+
3+
def pigeonhole_sort(a):
4+
# size of range of values in the list
5+
# (ie, number of pigeonholes we need)
6+
my_min = min(a)
7+
my_max = max(a)
8+
size = my_max - my_min + 1
9+
10+
# our list of pigeonholes
11+
holes = [0] * size
12+
13+
# Populate the pigeonholes.
14+
for x in a:
15+
assert type(x) is int, "integers only"
16+
holes[x - my_min] += 1
17+
18+
# Put the elements back into the array in order.
19+
i = 0
20+
for count in range(size):
21+
while holes[count] > 0:
22+
holes[count] -= 1
23+
a[i] = count + my_min
24+
i += 1
25+
26+
27+
a = [8, 1, 2, 7, 4, 5, 8]
28+
print("Sorted order is : ", end = ' ')
29+
30+
pigeonhole_sort(a)
31+
32+
for i in range(0, len(a)):
33+
print(a[i], end = ' ')

Data Structures and Algorithms/Sorting Algorithms/README.md

+24
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,27 @@ print("Original array:", arr)
2323
writes = cycle_sort(arr)
2424
print("Sorted array:", arr)
2525
print("Number of writes performed:", writes)
26+
```
27+
# Pigeonhole Sort Algorithm
28+
29+
## Overview
30+
Pigeonhole Sort is a sorting algorithm that works well for sorting lists where the range of values (i.e., the difference between the maximum and minimum values) is not significantly larger than the number of elements in the list. It is a non-comparison-based sorting algorithm.
31+
32+
The algorithm works by placing each element into its corresponding "pigeonhole" (a slot or bucket) and then iterating through the pigeonholes in order to reconstruct the sorted list.
33+
34+
## Complexity
35+
- **Time Complexity**:
36+
- The time complexity of Pigeonhole Sort is O(n + range), where n is the number of elements in the list and range is the difference between the maximum and minimum values.
37+
38+
- This makes it efficient for lists with a small range of values.
39+
- **Space Complexity**: The space complexity is O(range), as it requires additional space for the holes list.
40+
- **Limitations**: Pigeonhole Sort is not suitable for lists with a large range of values, as it would require a lot of memory for the holes list.
41+
42+
## Usage Example
43+
```python
44+
from PigeonHole_Sort import pigeonhole_sort
45+
46+
arr = [4, 5, 3, 2, 1]
47+
print("Original array:", arr)
48+
writes = pigeonhole_sort(arr)
49+
print("Sorted array:", arr)

0 commit comments

Comments
 (0)