Click or drag to resize
FrequencyCounter Class
The FrequencyCounter class provides a client for reading in a sequence of words and printing a word (exceeding a given length) that occurs most frequently. It is useful as a test client for various symbol table implementations.
Inheritance Hierarchy
SystemObject
  Algs4NetFrequencyCounter

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

The FrequencyCounter type exposes the following members.

Methods
  NameDescription
Public methodStatic memberMainTest
Reads in a command-line integer and sequence of words from standard input and prints out a word (whose length exceeds the threshold) that occurs most frequently to standard output. It also prints out the number of words whose length exceeds the threshold and the number of distinct such words.
Top
Remarks

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

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

See Also