rmandvikar.Trie.TrieNode.TrieNode C# (CSharp) 메소드

TrieNode() 개인적인 메소드

Constructor for character.
private TrieNode ( char character, TrieNode>.IDictionary children, bool isWord, int wordCount ) : System.Collections.Generic
character char The character for the TrieNode.
children TrieNode>.IDictionary Children of TrieNode.
isWord bool If root TrieNode to this TrieNode is a word.
wordCount int
리턴 System.Collections.Generic
        internal TrieNode(char character, IDictionary<char, TrieNode> children,
            bool isWord, int wordCount)
        {
            Character = character;
            Children = children;
            IsWord = isWord;
            WordCount = wordCount;
        }