显示代码纯文本
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
#define LL long long
#define Inf 2e9
const int maxn=100000*20;
int ch[maxn][27],n,root,cnt,len;
bool End[maxn];
char s[maxn];
void Insert(){
int rt=root;
for(int i=0;i<len;i++){
int op=s[i]-'a';
if(!ch[rt][op])ch[rt][op]=++cnt;
rt=ch[rt][op];
}
End[rt]=true;
}
int Query(int dep,int rt){
if(dep==len)return End[rt];
int op=s[dep]-'a';
if(s[dep]=='*'){
for(int i=0;i<26;i++)
if(ch[rt][i])
if(Query(dep+1,ch[rt][i]))return true;
return false;
}
if(!ch[rt][op])return false;
return Query(dep+1,ch[rt][op]);
}
void Init();
int main(){
freopen("asm_talk.in","r",stdin);
freopen("asm_talk.out","w",stdout);
Init();
return 0;
}
void Init(){
root=++cnt;
scanf("%d",&n);
for(int i=1;i<=n;i++){
int type;scanf("%d%s",&type,s);
len=strlen(s);
if(type==1)Insert();
else {
if(Query(0,root))puts("YES");
else puts("NO");
}
}
}