数据结构实验之查找三:树的种类统计

Problem Description

随着卫星成像技术的应用,自然资源研究机构可以识别每一个棵树的种类。请编写程序帮助研究人员统计每种树的数量,计算每种树占总数的百分比。

Input

输入一组测试数据。数据的第1行给出一个正整数N (n <= 100000),N表示树的数量;随后N行,每行给出卫星观测到的一棵树的种类名称,树的名称是一个不超过20个字符的字符串,字符串由英文字母和空格组成,不区分大小写。

Output

按字典序输出各种树的种类名称和它占的百分比,中间以空格间隔,小数点后保留两位小数。

Sample Input

2
This is an Appletree
this is an appletree

Sample Output

this is an appletree 100.00%

Hint

 

Source

xam

思路:这道题本质上就是一个二叉排序树,首先先建立一个二叉排序树,然后中序遍历这个树得到的就是按照字典序进行排序的序列。

代码如下:

#include<stdio.h>
#include<string.h>
#include<stdlib.h>

typedef struct node *Tree;

//树的存储结构

struct node
{
    char data[25] ;
    struct node *left ;
    struct node *right;
    int num;  //记录当前数据出现的次数
};
char ch[25] ; //一个辅助空间用来暂时存储数据的
int n ;//树的种类


Tree creat(Tree t , char *a)
{
    if(t == NULL )
    {
        t = (Tree)malloc(sizeof(struct  node)) ;
        t->num =1  ;
        strcpy(t->data,a) ;
        t->left = NULL ;
        t->right =NULL ;
    }
    else
    {
        if(strcmp(t->data,a)>0)
        {
            t->left = creat(t->left,a) ;
        }
        else if(strcmp(t->data,a)<0)
        {
            t->right = creat(t->right,a) ;

        }
        else if(strcmp(t->data,a)== 0)
            t->num++;
    }
    return t ;
}

void zhongxu(Tree t)
{
    if(t)
    {
        zhongxu(t->left) ;
        printf("%s %.2lf%%\n",t->data,t->num*1.0*100/n) ;
        zhongxu(t->right);
    }
}

int main()
{
    scanf("%d",&n)  ;
    Tree t = NULL ; //初始化排序树
    getchar(); //吸收掉回车
    int m = n ;//因为后面要用到n所以先用一个变量来代替n
    while(m--)
    {
        gets(ch) ;
        int  i ;
        //将大写字母都转化为小写字母
        for(i =0 ; i<strlen(ch) ; i++)
        {
            if(ch[i]>='A'&&ch[i]<='Z')
            {
                ch[i] = ch[i]+32  ;
            }
        }
        t = creat(t,ch)  ;
    }
    zhongxu(t) ; //中序遍历排序树
    return 0 ;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值