C# Класс CkanDotNet.Api.DataStructures.TrieNode

Node class for the Trie representing one trie node
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
_character char
_children TrieNode>.IDictionary

Открытые методы

Метод Описание
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

Описание методов

AddOrGetNode() публичный Метод

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
Результат TrieNode

Equals() публичный Метод

public Equals ( object obj ) : bool
obj object
Результат bool

GetChildNode() публичный Метод

public GetChildNode ( char c ) : TrieNode
c char
Результат TrieNode

GetHashCode() публичный Метод

public GetHashCode ( ) : int
Результат int

ToString() публичный Метод

public ToString ( ) : string
Результат string

TrieNode() публичный Метод

public TrieNode ( char c ) : System
c char
Результат System

Описание свойств

_character защищенное свойство

protected char _character
Результат char

_children защищенное свойство

protected IDictionary _children
Результат TrieNode>.IDictionary