码迷,mamicode.com
首页 > 其他好文 > 详细

poj 2418 Hardwood Species (trie 树)

时间:2014-10-30 15:23:14      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:poj   trie树   

链接:poj 2418

题意:给定一些树的种类名,求每种树所占的百分比,并按字典序输出

分析:实质就是统计每种树的数量n,和所有树的数量m,

百分比就为 n*100./m

由于数据达到一百万,直接用数组查找肯定超时,

可以用trie树,空间换取时间

注:这题树的品种名除了包括大写字母,小写字母和空格外,还有其他字符,

所以要注意trie树的子结点的个数

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
using namespace std;
typedef struct stu
{
    struct stu *next[240]; //注意next数组的个数
    int n;
}node;
struct word
{
    char s[35];
    double r;
}w[10010];
int n,m;
int cmp(struct word s1,struct word s2) //按字典序排序
{
    return strcmp(s1.s,s2.s)<0?1:0;
}
node* creat_node()                //创建结点并初始化
{
    node *p=(node *)malloc(sizeof(node));
    p->n=0;
    memset(p->next,0,sizeof(p->next));
    return p;
}
void trie_insert(node *p,char *s)  //trie的插入
{
    int i;
    char *t=s;
    while(*s!='\0'){
        i=*s;
        if(p->next[i]==0)
            p->next[i]=creat_node();
        p=p->next[i];
        s++;
    }
    if(p->n==0){
        strcpy(w[n].s,t);
        n++;
    }
    p->n++;
}
void trie_search(node *p,char *s,int j)  //查找
{
    int i;
    while(*s!='\0'){
        i=*s;
        p=p->next[i];
        s++;
    }
    w[j].r=(p->n)*100./m;  //算百分比
}
int main()
{
    node *root=NULL;
    int i=0;
    char s[35];
    root=creat_node();
    n=m=0;
    while(gets(s)!=NULL){
        m++;
        trie_insert(root,s);
    }
    sort(w,w+n,cmp);
    for(i=0;i<n;i++){
        trie_search(root,w[i].s,i);
        printf("%s %.4lf\n",w[i].s,w[i].r);
    }
    return 0;
}

poj 2418 Hardwood Species (trie 树)

标签:poj   trie树   

原文地址:http://blog.csdn.net/acm_code/article/details/40619089

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!