MergeSortT Class

Class performing a merge sort of an IListT

This class contains method for performing merge sort using the traditional recursive approach. This class is provided for reference, the iterative approach in SortTT(IListTT) is preferable.

As compared to QuickSortT, merge sort is stable (preserves order of equal elements), but uses more memory (an extra array of the same size). Quick sort is un-stable, but performs in-place sorting.

Definition

Namespace: DHI.Mike1D.Generic
Assembly: DHI.Mike1D.Generic (in DHI.Mike1D.Generic.dll) Version: 24.0.0.0 (11.1.1.1111)
C#
public class MergeSort<T>
Inheritance
Object    MergeSortT

Type Parameters

T
Type of elements in the list

Constructors

MergeSortT(IListT) Creates an instance for sorting
MergeSortT(IListT, IComparerT) Creates an instance for sorting
MergeSortT(IListT, ComparisonT) Creates an instance for sorting

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Sort Sort the entire list
Sort(Int32, Int32) Sort list within the provided indices (inclusive)
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also