摘要:
开始的时候没有用字典树WA了好多次,学了之后马上就A了,哈哈哈哈爽! 1 #include <iostream> 2 #include"stdio.h" 3 #include"string.h" 4 #include"stdlib.h" 5 6 using namespace std; 7 8 const int MAX = 26; 9 10 struct Tree{11 struct Tree *next[MAX];12 int number;13 };14 15 void init( struct Tree *t ){ 阅读全文
posted @ 2013-05-29 21:46
hacker_hzh
阅读(125)
评论(0)
推荐(0)