예제 #1
0
파일: closed_hash.hpp 프로젝트: Syntaf/GG
 void increment() { node_m = node_m->next(); }           
예제 #2
0
 node_t* next(char c){
     if (g(c) != NULL) return g(c);
     child[c] = failure->next(c);
     return child[c];
 }