Some sorting algorithms implemented in Python.
In this repository, I compiled some some sorting algorithms and implemented them in Python. I did this for practicing purposes. Several other algorithms are yet to be implemented.
python sorting.py number_of_elements sorting_strategy
number_of_elements
is a positive integer that specifies the number of values that the list to be sorted will have.
sorting_strategy
is the sorting algorithm that will be used and can be one of the following:
- bubble
- quick
- selection