Skip to content
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

Merged
merged 3 commits into from
May 21, 2018

Conversation

yesIamHasi
Copy link
Contributor

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)

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)
@christianbender christianbender added the duplicate This is a duplicate PR from the same user label May 20, 2018
LIST.remove(a)
LIST.remove(b)
end.reverse()
return start + end

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)
'''

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]
[]

@christianbender
Copy link

christianbender commented May 20, 2018

@yesIamHasi I debuggt your code. The problem is in fact your code don't touch the while loop.

I have modified the code a little to make it work as expected!
@harshildarji
Copy link
Member

@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!

code:

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))

output:

[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!

@christianbender
Copy link

@harshildarji It works for me.

@christianbender christianbender merged commit 2e74c8e into TheAlgorithms:master May 21, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug duplicate This is a duplicate PR from the same user enhancement This PR modified some existing files on hold
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants