Skip to content

Latest commit

 

History

History
 
 

sort

Sort

Sort algos playlist

Merge Sort

❯ python merge_sort.py
[-1, 0, 0, 1, 2, 4, 5, 7, 8, 13, 20, 21, 22, 29, 67, 72, 99, 123]
[1, 2, 3, 9]

Quick Sort

❯ python quick_sort.py
[-1, 0, 0, 1, 2, 4, 5, 7, 8, 13, 20, 21, 22, 29, 67, 72, 99, 123]
[1, 2, 3, 9]

Bubble Sort

❯ python bubble_sort.py
[-1, 0, 0, 1, 2, 4, 5, 7, 8, 13, 20, 21, 22, 29, 67, 72, 99, 123]
[1, 2, 3, 9]

Insertion Sort

❯ python insertion_sort.py 
[-1, 0, 0, 1, 2, 4, 5, 7, 8, 13, 20, 21, 22, 29, 67, 72, 99, 123]
[1, 2, 3, 9]

Selection Sort

❯ python selection_sort.py 
[-1, 0, 0, 1, 2, 4, 5, 7, 8, 13, 20, 21, 22, 29, 67, 72, 99, 123]
[1, 2, 3, 9]

Heap Sort

❯ python heap_sort.py
[-1, 0, 0, 1, 2, 4, 5, 7, 8, 13, 20, 21, 22, 29, 67, 72, 99, 123]
[1, 2, 3, 9]