/*题意很明显是统计单词前缀的字母个数。*/
#include<cstdio>
#include<cstring>
#include<malloc.h>
typedef struct node
{
int count;
struct node *next[26];
}*tree;
void insert(tree h,char *s)//建树
{//每一个节点保存的都是每一个字母出现的次数。
tree p=h;
int len=strlen(s),i;
for(i=0;i<len;i++)
{
int index=s[i]-'a';
if(p->next[index]!=NULL)
{
p=p->next[index];
p->count++;
}
else
{
tree tem=(tree)calloc(1,sizeof(node));
tem->count=1;
p->next[index]=tem;
p=tem;
}
}
}
int find(tree h)
{//查找不为空的结点,加上相应的次数,如果count值大于1,则说明有分支,需继续查找下去
tree p=h;
int sum=0,i;
for(i=0;i<26;i++)
{
if(h->next[i]!=NULL)
{
p=h->next[i];
sum+=p->count;
if(p->count>1)
sum+=find(p);
}
}
return sum;
}
char s[1000];
int main()
{
int t,n,i;
scanf("%d",&t);
while(t--)
{
scanf("%d\n",&n);
tree head=(tree)calloc(1,sizeof(node));
while(n--)
{
scanf("%s",s);
insert(head,s);
}
printf("%d\n",find(head));
}
return 0;
}
Description
/*题意很明显是统计单词前缀的字母个数。*/
#include<cstdio>
#include<cstring>
#include<malloc.h>
typedef struct node
{
int count;
struct node *next[26];
}*tree;
void insert(tree h,char *s)//建树
{//每一个节点保存的都是每一个字母出现的次数。
tree p=h;
int len=strlen(s),i;
for(i=0;i<len;i++)
{
int index=s[i]-'a';
if(p->next[index]!=NULL)
{
p=p->next[index];
p->count++;
}
else
{
tree tem=(tree)calloc(1,sizeof(node));
tem->count=1;
p->next[index]=tem;
p=tem;
}
}
}
int find(tree h)
{//查找不为空的结点,加上相应的次数,如果count值大于1,则说明有分支,需继续查找下去
tree p=h;
int sum=0,i;
for(i=0;i<26;i++)
{
if(h->next[i]!=NULL)
{
p=h->next[i];
sum+=p->count;
if(p->count>1)
sum+=find(p);
}
}
return sum;
}
char s[1000];
int main()
{
int t,n,i;
scanf("%d",&t);
while(t--)
{
scanf("%d\n",&n);
tree head=(tree)calloc(1,sizeof(node));
while(n--)
{
scanf("%s",s);
insert(head,s);
}
printf("%d\n",find(head));
}
return 0;
}
在一个奇怪的村子中,很多人的名字都很长,比如aaaaa, bbb and abababab。
名字这么长,叫全名显然起来很不方便。所以村民之间一般只叫名字的前缀。比如叫'aaaaa'的时候可以只叫'aaa',因为没有第二个人名字的前三个字母是'aaa'。不过你不能叫'a',因为有两个人的名字都以'a'开头。村里的人都很聪明,他们总是用最短的称呼叫人。输入保证村里不会有一个人的名字是另外一个人名字的前缀(作为推论,任意两个人的名字都不会相同)。
如果村里的某个人要叫所有人的名字(包括他自己),他一共会说多少个字母?
Input
输入第一行为数据组数T (T<=10)。每组数据第一行为一个整数n(1<=n<=1000),即村里的人数。以下n行每行为一个人的名字(仅有小写字母组成)。输入保证一个村里所有人名字的长度之和不超过1,000,000。
Output
对于每组数据,输出所有人名字的字母总数。
Sample Input
1
3
aaaaa
bbb
abababab
Sample Output
5
HINT