-
-
Notifications
You must be signed in to change notification settings - Fork 46.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create merge_sort_fastest.py #301
Conversation
Python implementation of merge sort algorithm. Takes an average of 0.6 microseconds to sort a list of length 1000 items. Best Case Scenario : O(n) Worst Case Scenario : O(n)
sorts/merge_sort_fastest.py
Outdated
LIST.remove(a) | ||
LIST.remove(b) | ||
end.reverse() | ||
return start + end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You must indent this line.
Takes an average of 0.6 microseconds to sort a list of length 1000 items. | ||
Best Case Scenario : O(n) | ||
Worst Case Scenario : O(n) | ||
''' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Your function don't work. I tested it:
def merge_sort(LIST):
start = []
end = []
a = LIST[0]
b = LIST[-1]
while (LIST.index(a) == LIST.index(b) and len(LIST) <=2):
a = min(LIST)
b = max(LIST)
start.append(a)
end.append(b)
LIST.remove(a)
LIST.remove(b)
end.reverse()
return (start + end)
liste = [4,1,99,3,2,2,0,100]
print liste
print merge_sort(liste)
The output is:
[4, 1, 99, 3, 2, 2, 0, 100]
[]
@yesIamHasi I debuggt your code. The problem is in fact your code don't touch the |
I have modified the code a little to make it work as expected!
@christianbender I have modified the code a little to make it work as (contributor) expected! It is working on my side, but it will be good if you also confirm it!
def merge_sort(LIST):
start = []
end = []
while len(LIST) > 1:
a = min(LIST)
b = max(LIST)
start.append(a)
end.append(b)
LIST.remove(a)
LIST.remove(b)
if LIST: start.append(LIST[0])
end.reverse()
return (start + end)
l = [4,1,99,3,2,2,0,5,6,45,100,34,44,999,998]
print(l)
print(merge_sort(l))
[4, 1, 99, 3, 2, 2, 0, 5, 6, 45, 100, 34, 44, 999, 998]
[0, 1, 2, 2, 3, 4, 5, 6, 34, 44, 45, 99, 100, 998, 999] I'll (or you can) merge this once you confirm! |
@harshildarji It works for me. |
Python implementation of merge sort algorithm.
Takes an average of 0.6 microseconds to sort a list of length 1000 items.
Best Case Scenario : O(n)
Worst Case Scenario : O(n)