You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All the sorting algorithms are implemented in Python using C++ thinking which makes the code execution time too high.
The current selection sort algorithm is 65% slower, merge_sort algorithm is 10^4 times slower.
Here's timeit result. Here is a better taste of selection sort. Here is a better taste of merge sort.
Tell me what you think about it?
Should I add it to TheAlgorithms/Python/sorts ?