Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. typedef struct _trie
  2. {
  3. // for a-z & apostrophe(')
  4. struct _trie* alphabet[27];
  5. bool isWord;
  6. }
  7. trie;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement