vote up 3 vote down star

Do any one know which sorting algorithm is used by .net when we implement IComparer in our class?

flag

3 Answers

vote up 3 vote down

You can always use the Reflector to open that bad boy up and look for yourself.

link|flag
Unless you spoonfeed, stuff like this will be downvoted :( – leppie Oct 15 '08 at 14:10
vote up 5 vote down

QuickSort seems to be it.

The documentation on IComparer says

This interface is used in conjunction with the Array.Sort and Array.BinarySearch methods.

The Array.Sort documentation says

This method uses the QuickSort algorithm. This implementation performs an unstable sort; that is, if two elements are equal, their order might not be preserved. In contrast, a stable sort preserves the order of elements that are equal.

link|flag
vote up 2 vote down

According to the MSDN, .NET uses QuickSort. By the way, the method absolutely doesn't depend on the comparer (as long as it's comparison-based), why should .NET therefore use a different method depending on whether you provide a custom comparer or not?

link|flag

Your Answer

Get an OpenID
or

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