You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
child.child[index] = newTrie();// this is the actual insert of the character (or key) in the tree. In other words it inserts a new Trie in the index. The index not being null means a character in the tree. e.g. 5 = f, 14=o
34
34
35
-
child = child.child[index];
35
+
child = child.child[index];// positioning the tree in this index
0 commit comments