diff --git a/.DS_Store b/.DS_Store index 1944ae0..3e6c089 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/sorting/BubbleSort.py b/sorting/BubbleSort.py new file mode 100644 index 0000000..9c10e42 --- /dev/null +++ b/sorting/BubbleSort.py @@ -0,0 +1,17 @@ + +# coding: utf-8 + +# In[43]: + + +alist = [54,26,93,17,77,31,44,55,20] +def bubbleSort(alist): + for passnum in range(len(alist)-1,0,-1): + for i in range(passnum): + if alist[i]>alist[i+1]: + temp = alist[i] + alist[i] = alist[i+1] + alist[i+1] = temp + return alist +print(bubbleSort(alist)) +