HDU 1251 字典树

字典树裸题,在Node里用num记录该Node到root表示的前缀出现的次数,每插入一次就+1。

#include <iostream>
#include <algorithm>
#include <string>
#include <stdio.h>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <queue>
#include <map>
#define N 500000
using namespace std;
const int INF = 0x3f3f3f3f;
char s[15];

struct Node{
    Node* ch[26];
    int num;
}a[N],*root;
int p = 0;

Node* newNode(){
    p++;
    memset(a[p].ch,0,sizeof(a[p].ch));
    a[p].num = 0;
    return &a[p];
}

void insert(char s[]){
    Node* cur = root;
    cur->num++;
    int i = 0;
    while (*s != '\0')
    {
        int x = *s - 'a';
        if(cur->ch[x] == NULL){
            cur->ch[x] = newNode();
        }
        cur = cur->ch[x];
        cur->num++;
        s++;
    }
}

int find(char s[]){
    Node* cur = root;
    while (*s != '\0')
    {
        int x = *s - 'a';
        if(cur->ch[x] == NULL){
            return 0;
        }
        cur = cur->ch[x];
        s++;
    }
    return cur->num;
}

int main(){
    root = newNode();
    while(gets(s) && s[0] != '\0')
    {
        insert(s);
    }

    while (scanf("%s",s)!=EOF)
    {
        printf("%d\n",find(s));
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值