C# Class CkanDotNet.Api.DataStructures.TrieNode

Node class for the Trie representing one trie node
Afficher le fichier Open project: opencolorado/.NET-Wrapper-for-CKAN-API Class Usage Examples

Protected Properties

Свойство Type Description
_character char
_children TrieNode>.IDictionary

Méthodes publiques

Méthode Description
AddOrGetNode ( char c ) : TrieNode

Adds the requested character to the Node subtree children If there is already a child representing the character - return it

Equals ( object obj ) : bool
GetChildNode ( char c ) : TrieNode
GetHashCode ( ) : int
ToString ( ) : string
TrieNode ( char c ) : System

Method Details

AddOrGetNode() public méthode

Adds the requested character to the Node subtree children If there is already a child representing the character - return it
public AddOrGetNode ( char c ) : TrieNode
c char
Résultat TrieNode

Equals() public méthode

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

GetChildNode() public méthode

public GetChildNode ( char c ) : TrieNode
c char
Résultat TrieNode

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int

ToString() public méthode

public ToString ( ) : string
Résultat string

TrieNode() public méthode

public TrieNode ( char c ) : System
c char
Résultat System

Property Details

_character protected_oe property

protected char _character
Résultat char

_children protected_oe property

protected IDictionary _children
Résultat TrieNode>.IDictionary