C# Class Trie.TrieNode

TrieNode is an internal object to encapsulate recursive, helper etc. methods.
Show file 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 property

public bool isEnd
return bool

nodes public property

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