예제 #1
0
 /** Initialize your data structure here. */
 public _0211_AddAndSearchWordDataStructureDesign()
 {
     root = new Trie();
 }
예제 #2
0
 public Trie(Trie parent = null)
 {
     Children    = new Trie[27];
     Parent      = parent;
     SentenceMap = new Dictionary <string, int>();
 }