Is there a widely-used algorithm that has time complexity worse than that of another known algorithm but it is a better choice in all practical si
quick-sort has worst case time complexity of O(N^2) but it is usually considered better than other sorting algorithms which have O(N log n) time complexity in the worst case.