字典树——统计难题 ( HDU 1251 )

  1. 字典树:

    • 定义:
      字典树(Trie树)是一种树形数据结构,其作用是存储多个字符串,并可以自动按照字典序排好。该算法的时间复杂度为O(n),空间复杂度为O(nk),其中n为所有字符串的和,k为所有可能出现的字符的个数。

    • 实现方法:
      树上的每个节点代表了一个字符串,每个节点最多有k个孩子,第k个孩子代表的字符串为原结点的字符串后接上第k个字符构成。

    • Node结点代码:
struct node
{
    int num;
    node *son[26];
    node()
    {
        num=0;
        int i;
        for(i=0;i<26;i++)
            son[i]=NULL;
    }
};
  • 插入字符串代码:
void insert(char *str)
{
    int i,m;
    cur=root;
    for(i=0;i<strlen(str);i++)
    {
        m=str[i]-'a';
        if(cur->son[m]!=NULL)
        {
            cur=cur->son[m];
            ++(cur->num);
        }
        else
        {
            NewNode=new node;
            ++(NewNode->num);
            cur->son[m]=NewNode;
            cur=NewMode;
        }
    }
}
  • 查询操作代码:
int search(char *str)
{
    int i,m;
    cur=root;
    for(i=0;i<strlen(str);i++)
    {
        m=str[i]-'a';
        if(cur->son[m]==NULL)
            return 0;
        cur=cur->son[m];
    }
    return cur->num;
}
  • 初始化元素:
node * root = new node;
node * cur  = new node;
node * NewNode = new node;
  1. 练习:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
using namespace std;
struct node
{
    int count;
    node *childs[26];
    node()
    {
        count=0;
        int i;
        for(i=0;i<26;i++)
        childs[i]=NULL;
    }
};
node *root=new node;
node *current,*newnode;
void insert(char *str)
{
    int i,m;
    current=root;
    for(i=0;i<strlen(str);i++)
    {
        m=str[i]-'a';
        if(current->childs[m]!=NULL)
        {
            current=current->childs[m];
            ++(current->count);
        }
        else
        {
            newnode=new node;
            ++(newnode->count);
            current->childs[m]=newnode;
            current=newnode;
        }
    }
}
int search(char *str)
{
    int i,m;
    current=root;
    for(i=0;i<strlen(str);i++)
    {
        m=str[i]-'a';
        if(current->childs[m]==NULL)
        return 0;
        current=current->childs[m];
    }
    return current->count;
}
int main()
{
    char str[20];
    while(gets(str),strcmp(str,""))
    insert(str);
    while(gets(str)!=NULL)
    printf("%d\n",search(str));
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值