C# Class rm.Trie.TrieNode

TrieNode is an internal object to encapsulate recursive, helper etc. methods.
Afficher le fichier Open project: rmandvikar/csharp-trie Class Usage Examples

Private Properties

Свойство Type Description
Clear void
GetChild TrieNode
GetChildren IEnumerable
RemoveChild void
SetChild void
TrieNode System

Méthodes publiques

Méthode Description
Equals ( object obj ) : bool
GetHashCode ( ) : int
ToString ( ) : string

For readability.

Private Methods

Méthode Description
Clear ( ) : void
GetChild ( char character ) : TrieNode
GetChildren ( ) : IEnumerable
RemoveChild ( char character ) : void
SetChild ( TrieNode child ) : void
TrieNode ( char character ) : System

Create a new TrieNode instance.

Method Details

Equals() public méthode

public Equals ( object obj ) : bool
obj object
Résultat bool

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int

ToString() public méthode

For readability.
public ToString ( ) : string
Résultat string