摘要: 小写字母的字典树#include #include #include #define MAXN 1000#define LEN 100char END[LEN] = "0";struct node{ struct node* next[26]; int id; int end; };int count;char book[MAXN][LEN];struct node root;int isin(struct node *root, char *tmp) { char head; if(tmp[0] == '\0') { if(root-... 阅读全文
posted @ 2014-01-15 19:13 ~嘉言懿行~~我是煲仔饭~~ 阅读(221) 评论(0) 推荐(0) 编辑