+ 1
As a time efficiency which sorting algorithm is best for python list amongst selection, bubble , insertion and merge sort ?
2 Answers
+ 4
You could implement all of them and time them yourself.
How big are your lists? If they are super small a simple selection sort is enough.
The more entries are in your list the better merge sort is.
- 1
U Can input all of them