| 3 | #define BASE 'a' |
| 4 | char *s = new char[MAXN]; |
| 5 | struct state { |
| 6 | int len, link, to[SIGMA]; |
| 7 | } *st = new state[MAXN+2]; |
| 8 | struct eertree { |
| 9 | int last, sz, n; |
| 10 | eertree() : last(1), sz(2), n(0) { |
nothing calls this directly
no outgoing calls
no test coverage detected