diff --git a/Dictionary/Trie.h b/Dictionary/Trie.h index 4d5bc6d..04f3b67 100644 --- a/Dictionary/Trie.h +++ b/Dictionary/Trie.h @@ -9,6 +9,7 @@ using namespace std; class TrieNode { + //It represents single alphabet of a word and also tells whether meaningful word ends at this alphabet string meaning; TrieNode *children[ALPHABETS]; friend class Dictionary;