vote up 3 vote down star

When I sort an Array using the native sort method, which algorithm does RUBY decide to use? Is it data-dependant (i.e If the data is small it uses X algorithm else uses Y algorithm)? Is it a stable sort? What is the average time complexity?

flag

66% accept rate

1 Answer

vote up 4 vote down check

Look here: http://www.igvita.com/2009/03/26/ruby-algorithms-sorting-trie-heaps/

It does natively use quicksort however, which is n log n complexity on average.

link|flag
This also means it is most likely not a stable sort. See the explanations of this at en.wikipedia.org/wiki/Quick_sort – Matthew Flaschen May 13 at 2:39
True, especially if the array is almost sorted, then quick sort's complexity becomes n^2. Still, it is extremely fast in most cases. – AlbertoPL May 13 at 2:41
If the array is almost sorted, only a stupid quicksort goes to n^2. Median of three pivot selection is in all implementattions I've used – Stephan Eggermont Dec 13 at 21:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.