Toggle navigation
Hot Examples
EN
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
C#
PHP
C#
Java
Go
C++
Python
JS
TS
Search
Home
Trie
TrieNode
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[]