Click or drag to resize
DeDup Class
The DeDup class provides a client for reading in a sequence of words from standard input and printing each word, removing any duplicates. It is useful as a test client for various symbol table implementations.
Inheritance Hierarchy
SystemObject
  Algs4NetDeDup

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

The DeDup type exposes the following members.

Methods
  NameDescription
Public methodStatic memberMainTest
Demo test for the DeDup client.
Top
Remarks

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

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

See Also