数据结构实验之查找三:树的种类统计
Time Limit: 400MS Memory limit: 65536K
题目描述
随着卫星成像技术的应用,自然资源研究机构可以识别每一个棵树的种类。请编写程序帮助研究人员统计每种树的数量,计算每种树占总数的百分比。
输入
输入一组测试数据。数据的第1行给出一个正整数N (n <= 100000),N表示树的数量;随后N行,每行给出卫星观测到的一棵树的种类名称,树的名称是一个不超过20个字符的字符串,字符串由英文字母和空格组成,不区分大小写。
输出
按字典序输出各种树的种类名称和它占的百分比,中间以空格间隔,小数点后保留两位小数。
示例输入
2 This is an Appletree this is an appletree
示例输出
this is an appletree 100.00%
提示
来源
xam
示例程序
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct tree
{
char data[50];
double count;
struct tree *l,*r;
}tree;
int n;
tree *creat(tree *t,char *c)
{
if(t==NULL)
{
t=(tree *)malloc(sizeof(struct tree));
strcpy(t->data,c);
t->count=1;
t->l=NULL;
t->r=NULL;
}
else
{
if(strcmp(c,t->data)<0)t->l=creat(t->l,c);
else if(strcmp(c,t->data)==0)t->count++;
else t->r=creat(t->r,c);
}
return t;
}
void zhongxu(tree *t)
{
if(t)
{
zhongxu(t->l);
printf("%s %.2lf%c\n",t->data,t->count*100/n,'%');
zhongxu(t->r);
}
}
int main()
{
int i,k;
char s[50];
tree *t;
scanf("%d\n",&n);
t=NULL;
for(k=1;k<=n;k++)
{
gets(s);
for(i=0;s[i];i++)
if(s[i]>='A'&&s[i]<='Z')
s[i]=s[i]+32;
t=creat(t,s);
}
zhongxu(t);
return 0;
}