Click or drag to resize
WhiteFilter Class
The WhiteFilter class provides a client for reading in a Whitelist of words from a file; then, reading in a sequence of words from standard input, printing out each word that appears in the file. It is useful as a test client for various symbol table implementations.
Inheritance Hierarchy
SystemObject
  Algs4NetWhiteFilter

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

The WhiteFilter type exposes the following members.

Methods
  NameDescription
Public methodStatic memberMainTest
Demo test the WhiteFilter 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 WhiteFilter implementation by the respective authors.

See Also