欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C - 数据结构实验之查找三:树的种类统计(哈希树)

程序员文章站 2022-03-24 16:06:32
...

Description

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

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

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

2
This is an Appletree
this is an appletree

Output

this is an appletree 100.00%

Hint

哈希树
字典树

#include<bits/stdc++.h>

using namespace std;

const int N = 25;
int n;
typedef struct node
{
    char name[N];
    int cnt;
    struct node *l, *r;
} tree;

void buildtree(tree *&root, char str[])
{
    if(root == NULL)
    {
        root = new tree;
        strcpy(root->name, str);
        root->cnt = 1;
        root->l = NULL;
        root->r = NULL;
    }
    else
    {
        int temp = strcmp(root->name, str);
        if(temp > 0)
            buildtree(root->l, str);
        else
            if(temp < 0)
            buildtree(root->r, str);
        else
            root->cnt++;
    }
}
void midorder(tree *root)
{
    if(root)
    {
        midorder(root->l);
        printf("%s %.2lf%%\n", root->name, 100.0 * root->cnt / n);
        midorder(root->r);
    }

}
int main()
{
    int t;
    cin >> t;
    n = t;
    getchar();//特别重要!
    tree *root = NULL;
    char s[N];
    while(t--)
    {
        gets(s);
        int len = strlen(s);
        for(int i = 0; i < len; i++)//大写变小写
        {
            if(s[i] >= 'A' && s[i] <= 'Z')
                s[i] += 'a' - 'A';
        }
        buildtree(root,s);
    }
    midorder(root);
    return 0;
}