C# Class Trie.TrieNode

TrieNode is an internal object to encapsulate recursive, helper etc. methods.
Mostrar archivo Open project: nzhul/TelerikAcademy Class Usage Examples

Public Properties

Property Type Description
isEnd bool
nodes Trie.TrieNode[]

Public Methods

Method Description
Contains ( char c ) : bool
GetChild ( char c ) : TrieNode

Method Details

Contains() public method

public Contains ( char c ) : bool
c char
return bool

GetChild() public method

public GetChild ( char c ) : TrieNode
c char
return TrieNode

Property Details

isEnd public_oe property

public bool isEnd
return bool

nodes public_oe property

public TrieNode[],Trie nodes
return Trie.TrieNode[]