Python progarm for Bubble Sort
kw.py
Output
kodingwindow@kw:~$ python3 kw.py [12, -2048, 1024, 0, -1, 95, 987] [-2048, 12, 1024, 0, -1, 95, 987] [-2048, 12, 0, 1024, -1, 95, 987] [-2048, 0, 12, 1024, -1, 95, 987] [-2048, 0, 12, -1, 1024, 95, 987] [-2048, 0, -1, 12, 1024, 95, 987] [-2048, 0, -1, 12, 95, 1024, 987] [-2048, -1, 0, 12, 95, 1024, 987] [-2048, -1, 0, 12, 95, 987, 1024] [-2048, -1, 0, 12, 95, 987, 1024] kodingwindow@kw:~$
What Next?
Python progarm for Merge Sort
Python progarm for Insertion Sort
Python progarm for Quick Sort
Advertisement