summaryrefslogtreecommitdiff
path: root/datastructures
diff options
context:
space:
mode:
Diffstat (limited to 'datastructures')
-rw-r--r--datastructures/trie.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/datastructures/trie.cpp b/datastructures/trie.cpp
index e91cc25..c252976 100644
--- a/datastructures/trie.cpp
+++ b/datastructures/trie.cpp
@@ -1,3 +1,4 @@
+//nur für kleinbuchstaben!
struct node {
node *(e)[26];
int c = 0;