Click or drag to resize
FileIndex Class
The FileIndex class provides a client for indexing a set of files, specified as command-line arguments. It takes queries from standard input and prints each file that contains the given query.
Inheritance Hierarchy
SystemObject
  Algs4NetFileIndex

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

The FileIndex type exposes the following members.

Methods
  NameDescription
Public methodStatic memberGetFileNames
Returns the list of files from the name-pattern list in the current directory
Public methodStatic memberMainTest
Implementation of the FileIndex 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 FileIndex implementation by the respective authors.

See Also