This is for my final paper for the Algorithms and Logic class. I have to present a sorting algorithm in pseudocode and flowchart, plus the analysis. I am really starting to like Python. Even a bubble sort looks nice.
# BubbleSort.py
lista = [1,3,5,2,0,8,5,9,3,3,7]
ListIsSorted = False
while not ListIsSorted:
ListIsSorted = True
for a in
(
Read more... )