題意:略
思路:經典的字典樹例題,模板用上啦,見演算法學習彙總。
還有就是經過這題學習到了如何判斷以空行結束,那就是gets(s),s[0] == '\0' 為真就是以空行結束啦。以及hdu提交不要用g++,會mle。
**:
1 #include2 #include 3
4using
namespace
std;56
const
int maxn = 26;7
8struct
trie
919 }*root;
2021
void insert(char *str)
2237
else
3843}44
}4546int query(char *str)
4759
60return p->flag;61}
6263
void free(trie*t)
6471
72delete
(t);73}
7475
intmain()
7686
87while (scanf("
%s",s) !=eof)
8893
94free(root);
9596
return0;
97 }
統計難題 hdu1251
昨天在小策策 和 小超人的指導下學習了下字典樹,於是今天寫了下這個很早就想學的演算法 寫的很醜,而且還看了下課件的 include 2497868 2010 05 28 21 25 42 accepted 1251 93ms 43784k 1152 b c 悔惜晟 include include u...
HDU 1251 統計難題
problem description ignatius最近遇到乙個難題,老師交給他很多單詞 只有小寫字母組成,不會有重複的單詞出現 現在老師要他統計出以某個字串為字首的單詞數量 單詞本身也是自己的字首 input 輸入資料的第一部分是一張單詞表,每行乙個單詞,單詞的長度不超過10,它們代表的是老師...
hdu 1251統計難題
字典樹模版題 動態實現 include include include define maxn 26 struct node root void insert char str else int find char str return current count int main 靜態實現 inc...