From 3e980f5acf50b099f7e41b8c82d47e5a47d8fa47 Mon Sep 17 00:00:00 2001 From: Deepika024 <44196112+Deepika024@users.noreply.github.com> Date: Tue, 8 Oct 2019 23:28:13 +0530 Subject: [PATCH] Update Trie.h --- Dictionary/Trie.h | 1 + 1 file changed, 1 insertion(+) 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;