From f0136de737adaa8b95e81aa17a1288d996be6268 Mon Sep 17 00:00:00 2001 From: JBatzill Date: Thu, 20 Nov 2014 14:59:15 +0100 Subject: Update trie.cpp --- datastructures/trie.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'datastructures') diff --git a/datastructures/trie.cpp b/datastructures/trie.cpp index c252976..9cfcda5 100644 --- a/datastructures/trie.cpp +++ b/datastructures/trie.cpp @@ -1,7 +1,7 @@ //nur für kleinbuchstaben! struct node { node *(e)[26]; - int c = 0; + int c = 0;//anzahl der wörter die an dem node enden. node() { for(int i = 0; i < 26; i++) e[i] = NULL; } }; -- cgit v1.2.3