MergeX Class |
Namespace: Algs4Net
public class MergeX
The MergeX type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | MainTest |
Reads in a sequence of strings from standard input; mergesorts them
(using an optimized version of mergesort);
and prints them to standard output in ascending order.
|
![]() ![]() | Sort(IComparable) |
Rearranges the array in ascending order, using the natural order. |
![]() ![]() | SortT(T, ComparerT) |
Rearranges the array in ascending order, using the provided order. |
For additional documentation, see Section 2.2 of Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne.
This class is a C# port from the original Java class MergeX implementation by the respective authors.