I found that java.util.Arrays.sort(Object[]) use 2 kinds of sorting algorithms(in JDK 1.6).
pseudocode:
if(array.length<7)
insertionSort(array);
else
mergeSort(array);
Why does it need 2 kinds of sorting here? for efficiency?
|
I found that pseudocode:
Why does it need 2 kinds of sorting here? for efficiency?
| |||||||||
feedback
|
|
It's important to note that an algorithm that is For small Here's a quote:
Here's another quote from Best sorting algorithm for nearly sorted lists paper:
What this means is that, in practice:
Related questions
A numerical exampleLet's consider these two functions:
Now let's plot the two functions together:
Note that between Analogously, if A1 is a quadratic algorithm with a low overhead, and A2 is a linear algorithm with a high overhead, for smaller input, A1 may be faster than A2. Thus, you can, should you choose to do so, create a hybrid algorithm A3 which simply selects one of the two algorithms depending on the size of the input. Whether or not this is worth the effort depends on the actual parameters involved. Many tests and comparisons of sorting algorithms have been made, and it was decided that because insertion sort beats merge sort for small arrays, it was worth it to implement both for | |||||||||
feedback
|
|
It's for speed. The overhead of mergeSort is high enough that for short arrays it would be slower than insertion sort. | |||
|
feedback
|
|
It appears that they believe | |||
|
feedback
|
|
Quoted from: http://en.wikipedia.org/wiki/Insertion_sort
| |||
|
feedback
|