C# Class Trie.Tries

Show file Open project: nzhul/TelerikAcademy Class Usage Examples

Public Methods

Method Description
Contains ( string s ) : bool
Insert ( string s ) : TrieNode

Private Methods

Method Description
Contains ( char c, TrieNode node ) : TrieNode
Insert ( char c, TrieNode node ) : TrieNode

Method Details

Contains() public method

public Contains ( string s ) : bool
s string
return bool

Insert() public method

public Insert ( string s ) : TrieNode
s string
return TrieNode