show/hide this revision's text 4 edited tags
show/hide this revision's text 3 Explicitly stated question to make pedantic people happy.

In class we are doing sorting algorithms and, although I understand them fine when talking about them and writing pseudocode, I am having problems writing actual code for them.

This is my attempt in Python:

mylist = [12, 5, 13, 8, 9, 65]

def bubble(badList):
    length = len(badList) - 1
    unsorted = True

    while unsorted:
    	for element in range(0,length):
		    unsorted = False
		    if badList[element] > badList[element + 1]:
			    hold = badList[element + 1]
			    badList[element + 1] = badList[element]
			    badList[element] = hold
			    print badList
		    else:
			    unsorted = True

print bubble(mylist)

Now, this (as far as i can tell) sorts correctly, but once it finishes it just loops indefinitely.

How can this code be fixed so the function finishes properly and correctly sorts a list of any (resonable) size?

P.S. I know i should not really have prints in a function and i should have a return, but i just have not done that yet as my code does not really work yet.

show/hide this revision's text 2 edited tags
show/hide this revision's text 1