09-08 HDU_Steps5.2 字典树,拓扑,哈夫曼 HDU1075 HDU1251 HDU1671 HDU1285 HDU2094 HDU3231 HDU1053 HDU2527
5.2.1HDU1075 WhatAreYouTalkingAbout简单的字典树,在翻译时注意一点小问题,字符串的问题就是处理有些麻烦..#include
#include
#include
usingnamespacestd;
charline[30],s1[12],s2[12],tline[3010];
structtrie{
trie*next[26];charc[12];inthas;