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

HDU 1004 Let the Balloon Rise

时间:2014-07-18 21:36:36      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:字典树   trie   

字典树(Trie)


题意是说找出最多的颜色。也就是找出出现次数最多的单词。

插入,然后遍历一遍把最多的输出就可以。


#include<cstdio>
#include<cstring>
#include<string>
#include<queue>
#include<algorithm>
#include<map>
#include<stack>
#include<iostream>
#include<list>
#include<set>
#include<cmath>
#define INF 0x7fffffff
#define eps 1e-6
#define LL long long
using namespace std;

struct Trie
{
    int word[1000][26];
    int sz,cot;
    int ex[1000*10];
    char love[10010][16];
    void intTrie()
    {
        sz=1;
        cot=1;
        memset(word,0,sizeof(word));
        memset(ex,0,sizeof(ex));
    }
    void insert(char *s)
    {
        int u=0,c,len=strlen(s);
        for(int i=0; i<len; i++)
        {
            c=s[i]-'a';
            if(!word[u][c])
                word[u][c]=sz++;
            u=word[u][c];
        }
        ex[u]++;
        strcpy(love[u],s);
        //return ex[u];
    }
    void fina()
    {
        int m=0;
        char tmp[16];
        for(int i=0;i<10010;i++)
        {
            if(ex[i]>m)
            {
                m=ex[i];
                strcpy(tmp,love[i]);
            }
        }
        puts(tmp);
    }
}wo;

int main()
{
    int n;
    while(scanf("%d",&n),n)
    {
        char str[16];
        int cot=0;
        wo.intTrie();
        for(int i=0;i<n;i++)
        {
            scanf("%s",str);
            wo.insert(str);
        }
        wo.fina();
    }
}


HDU 1004 Let the Balloon Rise,布布扣,bubuko.com

HDU 1004 Let the Balloon Rise

标签:字典树   trie   

原文地址:http://blog.csdn.net/dongshimou/article/details/37884011

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