Click or drag to resize
TrieSTValueKeysWithPrefix Method
Returns all of the keys in the set that start with prefix.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public IEnumerable<string> KeysWithPrefix(
	string prefix
)

Parameters

prefix
Type: SystemString
the prefix

Return Value

Type: IEnumerableString
all of the keys in the set that start with prefix as an iterable
See Also