diff options
| -rw-r--r-- | datastructures/trie.cpp | 1 |
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; |
