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
Namespace: Algs4NetAssembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
SyntaxThe BlackFilter type exposes the following members.
Methods
| Name | Description |
---|
  | MainTest |
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