Exemplo n.º 1
0
 void increment() { node_m = node_m->next(); }           
Exemplo n.º 2
0
 node_t* next(char c){
     if (g(c) != NULL) return g(c);
     child[c] = failure->next(c);
     return child[c];
 }