up vote 0 down vote favorite

Which sorting algorithm is used in .NET's Array Sort method ? (Array.Sort( ))

flag

73% accept rate

2 Answers

up vote 3 down vote accepted

It uses the QuickSort algorithm.

Source:

link|flag
Question: unless the OP asked specifically about .NET 1.1, why give him a link to .NET 1.1 documentation? – John Saunders Dec 6 '09 at 7:09
@John: Thanks, didn't noticed, link fixed... – CMS Dec 6 '09 at 7:12
up vote 0 down vote

It uses quick sort for sorting purpose

link|flag

Your Answer

get an OpenID
or
never shown

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