hdu1251 統計難題

2021-06-22 00:43:46 字數 556 閱讀 9770

字典樹模板題,題目要求求給出的單詞在詞典中作為字首的次數,那麼其實就是遍歷字典樹找到輸出cont,找不到輸出0就搞定了~

#include"cstdlib"

#include"cstdio"

#include"cstring"

#include"cmath"

#include"queue"

#include"algorithm"

#include"iostream"

using namespace std;

struct trie //字典樹節點結構體

};trie *root;

void init(char *v) //建樹

}int finde(char *v) //查詢

return p->cont; //查完單詞 當前節點次數。

}void del(trie *p) //釋放節點

int main()

while(gets(v)!=null)

del(root);

}

統計難題 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...