2016-07-29 20:06:49 +00:00
|
|
|
"""
|
2020-03-04 12:40:28 +00:00
|
|
|
This is a pure Python implementation of the merge sort algorithm
|
2016-07-29 20:06:49 +00:00
|
|
|
For doctests run following command:
|
|
|
|
python -m doctest -v merge_sort.py
|
|
|
|
or
|
|
|
|
python3 -m doctest -v merge_sort.py
|
|
|
|
For manual testing run:
|
|
|
|
python merge_sort.py
|
|
|
|
"""
|
2019-10-05 05:14:13 +00:00
|
|
|
|
|
|
|
|
2020-08-27 07:45:03 +00:00
|
|
|
def merge_sort(collection: list) -> list:
|
2016-08-16 16:43:02 +00:00
|
|
|
"""Pure implementation of the merge sort algorithm in Python
|
2016-07-29 20:06:49 +00:00
|
|
|
:param collection: some mutable ordered collection with heterogeneous
|
|
|
|
comparable items inside
|
|
|
|
:return: the same collection ordered by ascending
|
|
|
|
Examples:
|
|
|
|
>>> merge_sort([0, 5, 3, 2, 2])
|
|
|
|
[0, 2, 2, 3, 5]
|
|
|
|
>>> merge_sort([])
|
|
|
|
[]
|
|
|
|
>>> merge_sort([-2, -5, -45])
|
|
|
|
[-45, -5, -2]
|
|
|
|
"""
|
2019-10-05 05:14:13 +00:00
|
|
|
|
2020-08-27 07:45:03 +00:00
|
|
|
def merge(left: list, right: list) -> list:
|
2019-10-05 05:14:13 +00:00
|
|
|
"""merge left and right
|
2019-05-14 10:17:25 +00:00
|
|
|
:param left: left collection
|
|
|
|
:param right: right collection
|
|
|
|
:return: merge result
|
2019-10-05 05:14:13 +00:00
|
|
|
"""
|
2020-09-10 08:31:26 +00:00
|
|
|
|
2020-08-27 07:45:03 +00:00
|
|
|
def _merge():
|
|
|
|
while left and right:
|
|
|
|
yield (left if left[0] <= right[0] else right).pop(0)
|
|
|
|
yield from left
|
|
|
|
yield from right
|
2020-09-10 08:31:26 +00:00
|
|
|
|
2020-08-27 07:45:03 +00:00
|
|
|
return list(_merge())
|
2019-10-05 05:14:13 +00:00
|
|
|
|
2019-05-14 10:17:25 +00:00
|
|
|
if len(collection) <= 1:
|
|
|
|
return collection
|
|
|
|
mid = len(collection) // 2
|
|
|
|
return merge(merge_sort(collection[:mid]), merge_sort(collection[mid:]))
|
2016-07-29 20:06:49 +00:00
|
|
|
|
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
if __name__ == "__main__":
|
2020-08-27 07:45:03 +00:00
|
|
|
import doctest
|
2020-09-10 08:31:26 +00:00
|
|
|
|
2020-08-27 07:45:03 +00:00
|
|
|
doctest.testmod()
|
2019-10-05 05:14:13 +00:00
|
|
|
user_input = input("Enter numbers separated by a comma:\n").strip()
|
|
|
|
unsorted = [int(item) for item in user_input.split(",")]
|
|
|
|
print(*merge_sort(unsorted), sep=",")
|