Phone List HDU - 1671 字典树
Posted ttttttttrx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Phone List HDU - 1671 字典树相关的知识,希望对你有一定的参考价值。
题意:给出一堆一组一组的数字 判断有没有哪一个是另外一个的前缀
思路:字典树 插入的同时进行判断 不过 当处理一组数字的时候 需要考虑的有两点1.是否包含了其他的序列2.是否被其他序列包含
刚开始开的1e4死活不过 1e5直接过了。。
1 #include<bits/stdc++.h> 2 #include<string> 3 using namespace std; 4 const int maxn=1e5+5; 5 struct Trie{ 6 int size; 7 int ch[maxn][10]; 8 int isEnd[maxn]; 9 void init(){ 10 memset(ch,0,sizeof(ch)); 11 memset(isEnd,0,sizeof(isEnd)); 12 size=1; 13 } 14 bool insert(char*s){ 15 int rc=0,i=0; 16 int flag=1; 17 for(;s[i]!=‘