摘要: #include<cstdio>//字典树#define kind 26struct Treenode{ bool hasStr;// int count; Treenode*next[kind];};Treenode Memory[1000000]={0};int MemoryId=0;bool insert(Treenode*root,const char*word){ Treen... 阅读全文
posted @ 2010-04-14 22:39 yangjinbo28 阅读(131) 评论(0) 推荐(0)