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

HDU 1251 统计难题

时间:2014-08-11 21:21:23      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   os   io   for   2014   ar   

题意还是比较简单的,思路也比较好想!

做本题首先要理解什么是tire树,我的一篇转载的文章有很详细的过程:http://blog.csdn.net/u012313382/article/details/38493113

看完了那篇文章就直接给AC代码吧(自己参照模板打的代码):

#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<stdlib.h>
using namespace std;
#define maxn 26
typedef struct  node    //num是经过的次数
{
    //int str;          //str在本题中没有用处,但是在统计单词的问题上还是可以去记录单词数的
    int num;
    struct node *next[maxn];
}trienode,*trie;
struct node *root;
void Insert(char *s)
{
    int i,len=strlen(s);
    trienode *p=root,*q;
    for(i=0;i<len;i++)
    {
        if(p->next[s[i]-'a']==NULL) //如果这个它的子节点没有,则新建一个
        {
            q=(struct node  *)malloc(sizeof(struct node));
            memset(q->next,NULL,sizeof(q->next));
            q->num=1;
          //  q->str=0;
            p->next[s[i]-'a']=q;
        }
        else
        {
            p->next[s[i]-'a']->num++;
        }
        p=p->next[s[i]-'a'];
    }
   // p->str=1;
}
int find(char *s)
{
    int i,len=strlen(s);
    trienode *p=root,*q;
    for(i=0;i<len;i++)
    {
        if(p->next[s[i]-'a']==NULL)
            return 0;
        p=p->next[s[i]-'a'];
    }
    return p->num;
}
int main()
{
    char s[maxn];
    root=(struct node *)malloc(sizeof(struct node));
    memset(root->next,NULL,sizeof(root->next));
   // root->str=0;
    root->num=0;
    while(gets(s))
    {
        if(s[0]==0)
            break;
        Insert(s);
    }
    while(cin>>s)
        cout<<find(s)<<endl;
    return 0;
}

自己理解后的AC代码

#include<iostream>
# include<cstring>
#include<cstdio>
using namespace std;
const int maxn=500000;
char wen[20];
struct node{
    int tot;
    int child[26];
    node()
    {
        tot=0;
        memset(child,0,sizeof(child));
    }
}tree[maxn];
int sz=0;
void insert(char *s)
{

    int u=0;
    int h=strlen(s);
    for(int i=0;i<h;i++)
    {
        int pos=s[i]-'a';
        if(tree[u].child[pos]==0)
            tree[u].child[pos]=++sz;
        u=tree[u].child[pos];
        tree[u].tot++;
    }
}
int find(char *t)
{

   int u=0,h=strlen(t);
   for(int i=0;i<h;i++)
   {
       int pos=t[i]-'a';
       if(tree[u].child[pos]==0)
        return 0;
       u=tree[u].child[pos];
   }
   return tree[u].tot;
}
int main()
{
    while(gets(wen))
    {
        if(strlen(wen)==0)  break;
        insert(wen);
    }
    while(gets(wen))
    {
          printf("%d\n",find(wen));
    }
    return 0;
}


HDU 1251 统计难题,布布扣,bubuko.com

HDU 1251 统计难题

标签:style   blog   http   os   io   for   2014   ar   

原文地址:http://blog.csdn.net/u012313382/article/details/38498521

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