Skip to content

Commit 49dca39

Browse files
authored
Update index-pairs-of-a-string.cpp
1 parent 1ed270b commit 49dca39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/index-pairs-of-a-string.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// , z is the number of all matched strings
44
// Space: O(t), t is the total size of ac automata trie
55

6-
struct AhoNode {
6+
struct AhoNode {
77
vector<AhoNode *> children;
88
vector<int> indices;
99
AhoNode *suffix;

0 commit comments

Comments
 (0)