sdut2151专题

sdut2151 Phone Number

用trie树做的 #include<iostream>#include<cstring>#include<cstdio>using namespace std;struct node{bool set;node *next[10];node(){set=0;memset(next,NULL,sizeof(next));}};char a[1010];bool flag=0;voi