sweet1cris

Untitled

Oct 31st, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. class​ ​TrieNode​ ​{
  2.     Map<Character,​ ​TrieNode>​ ​children;​ ​​ ​​ ​​ ​//​ ​map​ ​the​ ​character​ ​to​ ​the​ ​corresponding​ ​child
  3.     boolean​ ​isEnd;
  4. }
Advertisement
Add Comment
Please, Sign In to add comment