Bubble sort is the fastest sorting algorithm(quora.com)
quora.com
Bubble sort is the fastest sorting algorithm
https://www.quora.com/How-efficient-is-bubble-sort/answer/Dale-Thomas-8?share=1
3 comments
It it ever actually faster than https://en.wikipedia.org/wiki/Smoothsort
?
Forget smoothsort, it loses out to insertion sort even. Divide-and-conquer n*lg n algorithms tend to switch to insertion sort when the size of the partition goes below a certain value because of how fast insertion sort is.
I'd say bubble sort is just easier to implement and more widely known.