Toggle navigation
Hot Examples
ZH
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
C#
PHP
C#
Java
Go
C++
Python
JS
TS
搜索
Home
Trie
TrieNode
C# Class Trie.TrieNode
TrieNode is an internal object to encapsulate recursive, helper etc. methods.
显示文件
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[]