'Quicksort is not stable, since it exchanges nonadjacent elements.' - please help understanding this. I know how partitioning works,and what stability is? But I cant make what makes the above as the reason for this to be not stable? Then i believe the same can be said for merge sort - though it is quoted to be a stable algorithm.
|
|
Consider what happens during the partition for the following array of pairs, where the comparator uses the integer (only). The string is just there so that we have two elements that compare as if equal, but actually are distinguishable.
By definition a sort is stable if, after the sort, the two elements that compare as if equal (the two Suppose we choose Quicksorts in general don't give any particular guarantee where after the partition the two Since each partition isn't stable, the overall sort isn't likely to be. As Steve314 points out in a comment, merge sort is stable provided that when merging, if you encounter equal elements you always output first the one that came from the "lower down" of the two halves that you're merging together. That is, each merge has to look like this, where the "left" is the side that comes from lower down in the original array.
If the |
|||||||
|