题目描述
随着卫星成像技术的应用,自然资源研究机构可以识别每一个棵树的种类。请编写程序帮助研究人员统计每种树的数量,计算每种树占总数的百分比。
输入
输入一组测试数据。数据的第1行给出一个正整数N (n <= 100000),N表示树的数量;随后N行,每行给出卫星观测到的一棵树的种类名称,树的名称是一个不超过20个字符的字符串,字符串由英文字母和空格组成,不区分大小写。
输出
按字典序输出各种树的种类名称和它占的百分比,中间以空格间隔,小数点后保留两位小数。
示例输入
2 This is an Appletree this is an appletree
示例输出
this is an appletree 100.00%
提示
我的代码:
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
struct hh
{
char data[30];
int num;
struct hh *l,*r;
};
char a[30];
int n;
struct hh *creat(struct hh *p)
{
if(p == NULL)
{
p=(struct hh *)malloc(sizeof(struct hh));
p->l = NULL;
p->r = NULL;
p->num = 1;
strcpy(p->data,a);
}
else
{
if(strcmp(a,p->data) == 0)
p->num++;
else if(strcmp(a,p->data) < 0)
p->l=creat(p->l);
else
p->r=creat(p->r);
}
return p;
}
void in(struct hh *p)
{
if(p!=NULL)
{
in(p->l);
printf("%s %.2lf%%\n",p->data,1.0*p->num*100/n);
in(p->r);
}
}
int main()
{
int i,j,m;
struct hh *root;
scanf("%d\n",&n);
root = NULL;
for(i=0;i<n;i++)
{
gets(a);
m=strlen(a);
for(j=0;j<m;j++)
a[j]=tolower(a[j]);//关键!
root=creat(root);
}
in(root);
return 0;
}
本文介绍了一种使用二叉搜索树来统计不同树种数量及各自所占百分比的方法。通过输入树的种类名称,程序能准确地计算出每种树的数量,并输出其在总树木中所占的比例。
426

被折叠的 条评论
为什么被折叠?



