vote up 0 vote down star

I've implemented what I believe to be a merge sort algorithm in python. I've never programmed in Python before, so I used several resources with commands that seemed foreign to me, to gain a better understanding.

However, I've also never implemented merge sort in the first place, so I'm not sure if I've even implemented it correctly. Any guidance, tips, or corrections would be greatly appreciated.

Here is my merge method:

def merge(left, right):
    result = []
    i, j = 0, 0
    while(i < len(left) and j< len(right)):
    	if(len(left[i]) <= len(right[j])): 
    		print(i)
    		result.append(left[i])
    		i=i+1
    	else:
    		result.append(right[j])
    		j=j+1

    result += left[i:]
    result += right[j:]
    return result

meanwhile, here is my mergesort method:

def mergesort(list):
    if len(list) < 2:
    	return list
    else:
    	middle = len(list) / 2
    	left = mergesort(list[:middle])
    	right = mergesort(list[middle:])
    	return merge(left, right)

Thanks for any possible help! :)

flag

2 Answers

vote up 2 vote down check

Don't name variables "list". That's the name of Python's array type, so using a variable by the same name is confusing.

When you return from a conditional, you don't need to sitck the rest of the function in an else block.

def mergesort(list):
    if len(list) < 2:
        return list
    middle = len(list) / 2
    left = mergesort(list[:middle])
    right = mergesort(list[middle:])
    return merge(left, right)

Overall, it looks reasonable.

Of course, for anything but an exercise, you should be using list.sort or sorted().

a = ["abc", "de", "f", "ghijkl"]
print sorted(a, lambda a,b: cmp(len(a), len(b)))
link|flag
thanks for that! i don't know which words are keywords for the language yet. I'm not sure what example would be better for learning the language, so i'm just going with it. thanks for your tips! – Chris Jul 26 at 20:11
however, i have an issue with the method. it seems to be simply returning the list exactly how it's passed in. i am simply calling mergesort(originalArray) to sort it. This seems reasonable, correct? – Chris Jul 26 at 20:16
My bad, I was calling this improperly. – Chris Jul 26 at 20:30
list (and other builtin types) isn't actually a keyword; you can use the name if you want. It's just best to avoid it. If it was a keyword (eg. for, def), you'd get a compile error. – Glenn Maynard Jul 26 at 21:03
Note if you just want to sort a list in-place, you can just use a.sort(...) instead of a = sorted(a, ...). – Glenn Maynard Jul 26 at 21:04
vote up 2 vote down

How about using the sorted() function? Like this:

def len_cmp(x, y):
    return len(x) - len(y)

my_strings = ["hello", "foo", "bar", "spam"]
print sorted(my_strings, len_cmp)
link|flag
wasn't aware of the sorted function, thanks :) where could i find documentation on how it is implemented? – Chris Jul 26 at 20:10
You can find a decent explaination here: wiki.python.org/moin/HowTo/Sorting It's pretty handy. :) – Evan Fosmark Jul 26 at 20:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.