mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-01-19 00:37:02 +00:00
More elegant coding for merge_sort_fastest (#804)
* More elegant coding for merge_sort_fastest * More elegant coding for merge_sort
This commit is contained in:
parent
70bb6b2f18
commit
3c40fda6a3
|
@ -29,36 +29,20 @@ def merge_sort(collection):
|
||||||
>>> merge_sort([-2, -5, -45])
|
>>> merge_sort([-2, -5, -45])
|
||||||
[-45, -5, -2]
|
[-45, -5, -2]
|
||||||
"""
|
"""
|
||||||
length = len(collection)
|
def merge(left, right):
|
||||||
if length > 1:
|
'''merge left and right
|
||||||
midpoint = length // 2
|
:param left: left collection
|
||||||
left_half = merge_sort(collection[:midpoint])
|
:param right: right collection
|
||||||
right_half = merge_sort(collection[midpoint:])
|
:return: merge result
|
||||||
i = 0
|
'''
|
||||||
j = 0
|
result = []
|
||||||
k = 0
|
while left and right:
|
||||||
left_length = len(left_half)
|
result.append(left.pop(0) if left[0] <= right[0] else right.pop(0))
|
||||||
right_length = len(right_half)
|
return result + left + right
|
||||||
while i < left_length and j < right_length:
|
if len(collection) <= 1:
|
||||||
if left_half[i] < right_half[j]:
|
return collection
|
||||||
collection[k] = left_half[i]
|
mid = len(collection) // 2
|
||||||
i += 1
|
return merge(merge_sort(collection[:mid]), merge_sort(collection[mid:]))
|
||||||
else:
|
|
||||||
collection[k] = right_half[j]
|
|
||||||
j += 1
|
|
||||||
k += 1
|
|
||||||
|
|
||||||
while i < left_length:
|
|
||||||
collection[k] = left_half[i]
|
|
||||||
i += 1
|
|
||||||
k += 1
|
|
||||||
|
|
||||||
while j < right_length:
|
|
||||||
collection[k] = right_half[j]
|
|
||||||
j += 1
|
|
||||||
k += 1
|
|
||||||
|
|
||||||
return collection
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
@ -69,4 +53,4 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
user_input = raw_input('Enter numbers separated by a comma:\n').strip()
|
user_input = raw_input('Enter numbers separated by a comma:\n').strip()
|
||||||
unsorted = [int(item) for item in user_input.split(',')]
|
unsorted = [int(item) for item in user_input.split(',')]
|
||||||
print(merge_sort(unsorted))
|
print(*merge_sort(unsorted), sep=',')
|
||||||
|
|
|
@ -1,19 +1,46 @@
|
||||||
'''
|
'''
|
||||||
Python implementation of merge sort algorithm.
|
Python implementation of the fastest merge sort algorithm.
|
||||||
Takes an average of 0.6 microseconds to sort a list of length 1000 items.
|
Takes an average of 0.6 microseconds to sort a list of length 1000 items.
|
||||||
Best Case Scenario : O(n)
|
Best Case Scenario : O(n)
|
||||||
Worst Case Scenario : O(n)
|
Worst Case Scenario : O(n)
|
||||||
'''
|
'''
|
||||||
def merge_sort(LIST):
|
from __future__ import print_function
|
||||||
start = []
|
|
||||||
end = []
|
|
||||||
while len(LIST) > 1:
|
def merge_sort(collection):
|
||||||
a = min(LIST)
|
"""Pure implementation of the fastest merge sort algorithm in Python
|
||||||
b = max(LIST)
|
|
||||||
start.append(a)
|
:param collection: some mutable ordered collection with heterogeneous
|
||||||
end.append(b)
|
comparable items inside
|
||||||
LIST.remove(a)
|
:return: a collection ordered by ascending
|
||||||
LIST.remove(b)
|
|
||||||
if LIST: start.append(LIST[0])
|
Examples:
|
||||||
|
>>> merge_sort([0, 5, 3, 2, 2])
|
||||||
|
[0, 2, 2, 3, 5]
|
||||||
|
|
||||||
|
>>> merge_sort([])
|
||||||
|
[]
|
||||||
|
|
||||||
|
>>> merge_sort([-2, -5, -45])
|
||||||
|
[-45, -5, -2]
|
||||||
|
"""
|
||||||
|
start, end = [], []
|
||||||
|
while len(collection) > 1:
|
||||||
|
min_one, max_one = min(collection), max(collection)
|
||||||
|
start.append(min_one)
|
||||||
|
end.append(max_one)
|
||||||
|
collection.remove(min_one)
|
||||||
|
collection.remove(max_one)
|
||||||
end.reverse()
|
end.reverse()
|
||||||
return (start + end)
|
return start + collection + end
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
try:
|
||||||
|
raw_input # Python 2
|
||||||
|
except NameError:
|
||||||
|
raw_input = input # Python 3
|
||||||
|
|
||||||
|
user_input = raw_input('Enter numbers separated by a comma:\n').strip()
|
||||||
|
unsorted = [int(item) for item in user_input.split(',')]
|
||||||
|
print(*merge_sort(unsorted), sep=',')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user