0
What is the best sort algorithm
İn ordinary case merge, quick or something else?
1 Respuesta
+ 2
Merge sort is fast and stable, meaning it will be just as fast every time. Quicksort is also very fast (sometimes faster than merge sort), but it isn't stable, as the fastest implementations use a random number.