HDU-1247 Hat's Words (字典树)

这里写图片描述


经典的字典树,debug爽歪歪。


Code:

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 const int MAXN = 500000;
 4 int ch[MAXN][26], tag[MAXN], tot = 1;
 5 char word[50010][80];
 6 
 7 void Insert(char *s) {
 8     int now = 1, id;
 9     while(*s) {
10         id = *s - 'a';
11         if (ch[now][id]) now = ch[now][id];
12         else now = ch[now][id] = ++tot;
13         ++s;
14     }
15     ++tag[now];
16 }
17 
18 bool find(char *s) {
19     int now = 1, id;
20     while(*s) {
21         id = *s - 'a';
22         if (ch[now][id]) now = ch[now][id];
23         else return false;
24         ++s;
25     }
26     if (tag[now]) return true;
27     else return false;
28 }
29 
30 bool find_hat(char *s) {
31     char ss[80];
32     int now = 1, id, len = strlen(s);
33     for (int i = 1; i <= len; ++i) {
34         id = s[i-1] - 'a';
35         if (ch[now][id]) now = ch[now][id];
36         if (tag[now] && i < len) {
37             strcpy(ss, s+i);
38             if (find(ss)) return true;
39         }
40     }
41     return false;
42 }
43 
44 int main() {
45     int num = 0;
46     memset(tag, 0, sizeof(tag));
47     while(~scanf("%s", word[num]))
48         Insert(word[num++]);
49     for (int i = 0; i < num; ++i)
50         if(find_hat(word[i]))
51             printf("%s\n", word[i]);
52 
53     return 0;
54 }

 

 

转载于:https://www.cnblogs.com/robin1998/p/6359116.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值