예제 #1
0
 /// <summary>
 /// Initialises a new instance of the MoreComplexDataStructures.CharacterTrie class.
 /// </summary>
 public CharacterTrie(out TrieNode <Char> rootNode)
 {
     underlyingTree = new Trie <Char>(out rootNode);
 }
예제 #2
0
 /// <summary>
 /// Initialises a new instance of the MoreComplexDataStructures.CharacterTrie class.
 /// </summary>
 public CharacterTrie()
 {
     underlyingTree = new Trie <Char>();
 }