hdu1251统计难题(字典树小试牛刀)

->题目猛戳这里<-

题目大意:略

题目分析:建棵字典树就ok,详情请见代码:

#include <iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
using namespace std;

char s[20];
typedef struct node
{
    struct node *next[26];
    int num;
}tree;

void init(tree *t)
{
	t->num = 0;
	for(int i = 0;i < 26;i ++)
		t->next[i] = NULL;
}

void build(tree *t,int id)
{
    if(t->next[s[id] - 'a'] == NULL)
    {
        t->next[s[id] - 'a'] = (tree *)malloc(sizeof(tree));
        init(t->next[s[id] - 'a']);
        t->next[s[id] - 'a']->num = 1;
    }
    else
    {
        t->next[s[id] - 'a']->num ++;
    }
    if(s[id + 1] == '\0')
        return;
    else
        build(t->next[s[id] - 'a'],id + 1);
}

int query(tree * t,int id)
{
    if(t->next[s[id] - 'a'] == NULL)
        return 0;
    if(s[id + 1] == '\0')
        return t->next[s[id] - 'a']->num;
    return query(t->next[s[id] - 'a'],id + 1);
}

int main()
{
    tree *root = NULL;
    root = (struct node *)malloc(sizeof(struct node));
    init(root);
    while(gets(s))
    {
        //puts(s);
        if(strlen(s) == 0)
            break;
        build(root,0);
    }
    while(gets(s) != NULL)
    {
        int ans;
        ans = query(root,0);
        printf("%d\n",ans);
    }
    return 0;
}
//140MS	43896K


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值