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

前端 未结 6 745
悲&欢浪女
悲&欢浪女 2021-02-12 15:44

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

6条回答
  •  面向向阳花
    2021-02-12 15:51

    Some more notes from MSDN

    This method uses the introspective sort (introsort) algorithm as follows:

    If the partition size is fewer than 16 elements, it uses an insertion sort algorithm.

    If the number of partitions exceeds 2 * LogN, where N is the range of the input array, it uses a Heapsort algorithm.

    Otherwise, it uses a 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.

    For arrays that are sorted by using the Heapsort and Quicksort algorithms, in the worst case, this method is an O(n log n) operation, where n is length.

    Notes to Callers The .NET Framework 4 and earlier versions used only the Quicksort algorithm. Quicksort identifies invalid comparers in some situations in which the sorting operation throws an IndexOutOfRangeException exception, and throws an ArgumentException exception to the caller. Starting with the .NET Framework 4.5, it is possible that sorting operations that previously threw ArgumentException will not throw an exception, because the insertion sort and heapsort algorithms do not detect an invalid comparer. For the most part, this applies to arrays with fewer than 16 elements.

提交回复
热议问题