0
What is the most fastest sorting algorithm? And Why?
wanted to know what is the best in sorting user inputs. thanks for helping
2 Respostas
+ 17
Quick Sort is generally considered to be the best sorting algorithm.
The worst case complexity is O(n^2), on an average it gives us O(nlogn) time complexity.
0
any algorithm with t(n)=nlgn as worst case