Phone List POJ - 3630(Trie 基本操作)

Phone List POJ - 3630

题意:

给你n个字符串。要求你判断是否有字符串是其他字符串的 前缀。

思路:

其实就是插入。

这里插入分两种情况。

  1. 假如当前的串str为字典里面串的前缀。(这种情况就是插入时,不会碰到新结点)
  2. 字典里的串是str的前缀。(这种情况插入时,查看当前结点是不是某个串的结尾)

AC

#include <iostream>
#include <cstring>
#include <cstdio>
#include <string>
#define For(i,x,y) for(int i=(x); i<=(y); i++)
#define mst(x,a) memset(x,a,sizeof(x))
using namespace std;
inline int read(){
    int ans=0;
    char r=getchar();bool neg=false;
    while(r<'0'||r>'9'){if(r=='-')neg=true;r=getchar();}
    while(r>='0'&&r<='9'){ans=ans*10+r-'0';r=getchar();}
    return (neg)?(-ans):ans;
}
void write(int x){
    if(x<0){putchar('0');x=-x;}
    if(x>9)write(x/10);
    putchar(x%10+'0');
}
const int maxnode=1e5+10;
const int sigma_size=10;
int flag;
struct Trie{
    int ch[maxnode][sigma_size];
    bool is_end[maxnode];
    int sz;
    void clear(){sz=2;mst(ch[1],0);mst(is_end,0);}
    int idx(char c){return c-'0';}
    bool insert(char *s){
        int len=strlen(s),u=1;
        bool ok=true;
        for(int i=0; i<len; i++){
            int k=idx(s[i]);
            if(!ch[u][k]){
                mst(ch[sz],0);
                ch[u][k]=sz++;
                ok=false;
            }
            u=ch[u][k];
            if(is_end[u])return true;//flag=false;
        }
        is_end[u]=true;
        return ok;
    }
}trie;
void init(){
    trie.clear();
    flag=true;
}
char s[maxnode];
int main()
{
    int t;cin>>t;
    while(t--){
        int n;cin>>n;
        init();
        For(i,1,n){
            scanf("%s", s);
            if(trie.insert(s))flag=false;
        }
        if(flag)cout<<"YES"<<endl;
        else cout<<"NO"<<endl;
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值