hdu 1251(字典树) 统计难题 http://acm.hdu.edu.cn/showproblem.php?pid=1251
摘要:
解题思路:直接套用字典树的模板,注意以空行结束的判断是 strcmp(str,"")==0代码:#include <iostream>#include <cstdio>#include <cstring>using namespace std;//创建一个字典树结构体struct node{ int num; struct node *br[26];};node *root;//插入字母建立树void Tree_Insert(char str[]){ node *t , *s = root; int i , j; int len = st 阅读全文
posted @ 2012-06-22 18:49 c语言源码 阅读(157) 评论(0) 推荐(0) 编辑