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

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

The BlackFilter type exposes the following members.

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

See Also