示例#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];
 }