Selection Class |
Namespace: Algs4Net
public class Selection
The Selection type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | MainTest |
Reads in a sequence of strings from standard input; selection sorts them;
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 a comparator. |
This class is a C# port from the original Java class Selection implementation by Robert Sedgewick and Kevin Wayne.