Which sorting method will be the fastest when the list is already sorted? All of the sorting algorythms like: [1] bubble sort, [2] modified bubble sort and [3] insertion sort in best case scenario will perform at O(n). So they supposed to be all equally fast. When I try to solve example sorting problem I see that really all of them perform at O(n). Then I saw a graph that insertion sort will be faster than two others (it's here: https://www.toptal.com/developers/sorting-algorithms/nearly-sorted-initial-order). I'm wondering if it's true for already sorted data like for example list = 1, 2, 3, 4? I think they're equally fast - am I right?
Thanks for help!