C# 클래스 CkanDotNet.Api.DataStructures.TrieNode

Node class for the Trie representing one trie node
파일 보기 프로젝트 열기: opencolorado/.NET-Wrapper-for-CKAN-API 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
_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