Exemplo n.º 1
0
        public TrieNode CreateChild(char c)
        {
            var child = new TrieNode(c);
            children.AddLast(child);

            return child;
        }
Exemplo n.º 2
0
 public Trie()
 {
     head = new TrieNode();
 }