Click or drag to resize
Quick3string Class
The Quick3string class provides static methods for sorting an array of strings using 3-way radix quicksort.
Inheritance Hierarchy
SystemObject
  Algs4NetQuick3string

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public class Quick3string

The Quick3string type exposes the following members.

Methods
  NameDescription
Public methodStatic memberMainTest
Reads in a sequence of fixed-length strings from standard input, 3-way radix quicksorts them, and prints them to standard output in ascending order.
Public methodStatic memberSort
Rearranges the array of strings in ascending order.
Top
Remarks

For additional documentation, see Section 5.1 of Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne.

This class is a C# port from the original Java class Quick3string implementation by the respective authors.

See Also