mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
bc8df6de31
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.2.2 → v0.3.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.2.2...v0.3.2) - [github.com/pre-commit/mirrors-mypy: v1.8.0 → v1.9.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.8.0...v1.9.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
62 lines
1.4 KiB
Python
62 lines
1.4 KiB
Python
"""
|
|
This is an implementation of Pigeon Hole Sort.
|
|
For doctests run following command:
|
|
|
|
python3 -m doctest -v pigeon_sort.py
|
|
or
|
|
python -m doctest -v pigeon_sort.py
|
|
|
|
For manual testing run:
|
|
python pigeon_sort.py
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
def pigeon_sort(array: list[int]) -> list[int]:
|
|
"""
|
|
Implementation of pigeon hole sort algorithm
|
|
:param array: Collection of comparable items
|
|
:return: Collection sorted in ascending order
|
|
>>> pigeon_sort([0, 5, 3, 2, 2])
|
|
[0, 2, 2, 3, 5]
|
|
>>> pigeon_sort([])
|
|
[]
|
|
>>> pigeon_sort([-2, -5, -45])
|
|
[-45, -5, -2]
|
|
"""
|
|
if len(array) == 0:
|
|
return array
|
|
|
|
_min, _max = min(array), max(array)
|
|
|
|
# Compute the variables
|
|
holes_range = _max - _min + 1
|
|
holes, holes_repeat = [0] * holes_range, [0] * holes_range
|
|
|
|
# Make the sorting.
|
|
for i in array:
|
|
index = i - _min
|
|
holes[index] = i
|
|
holes_repeat[index] += 1
|
|
|
|
# Makes the array back by replacing the numbers.
|
|
index = 0
|
|
for i in range(holes_range):
|
|
while holes_repeat[i] > 0:
|
|
array[index] = holes[i]
|
|
index += 1
|
|
holes_repeat[i] -= 1
|
|
|
|
# Returns the sorted array.
|
|
return array
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import doctest
|
|
|
|
doctest.testmod()
|
|
user_input = input("Enter numbers separated by comma:\n")
|
|
unsorted = [int(x) for x in user_input.split(",")]
|
|
print(pigeon_sort(unsorted))
|