summaryrefslogtreecommitdiff
path: root/string/trie.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'string/trie.cpp')
-rw-r--r--string/trie.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/string/trie.cpp b/string/trie.cpp
index 163a110..1b5f573 100644
--- a/string/trie.cpp
+++ b/string/trie.cpp
@@ -1,5 +1,5 @@
struct node {
- node *(e)[26]; // Implementierung für Kleinbuchstaben.
+ node *e[26]; // Implementierung für Kleinbuchstaben.
int c = 0; // Anzahl der Wörter, die an diesem node enden.
node() { for(int i = 0; i < 26; i++) e[i] = NULL; }
};