Skip to content

ogxone/sort

Repository files navigation

Run test

pytest sort_test.py 

Run example

Merge sort

python -m merge 64 1 5 23 63

Quick sort

python -m quick 64 1 5 23 63

Insertion sort

python -m insertion 64 1 5 23 63

Bubble sort

python -m bubble 64 1 5 23 63

Heap sort

python -m heap 64 1 5 23 63

Example output:

Input obtained:
[64, 1, 5, 23, 63]
Sorted result
[1, 5, 23, 63, 64]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages