[字典树 ] hdu 1671 phone list

这篇博客介绍了一种使用字典树(Trie Tree)解决HDU 1671题目的方法,该题目与POJ 3630相同。博主通过定义结构体`tireTree`来实现字典树,并提供了`insert`函数用于插入电话号码。在主函数中,博主读取电话号码列表,对其进行排序,然后尝试插入到字典树中。如果所有电话号码都能成功插入,程序输出"YES",否则输出"NO"。
摘要由CSDN通过智能技术生成
/**
hdu 1671 phone list
字典树和poj3630是同一道题
*/
#include <stdio.h>
#include <algorithm>
#include <string.h>

#define N 100000

struct tireTree
{
    bool isNum;
    tireTree *child[10];
}tt[N],*sp;

struct Phone
{
    int len;
    char s[11];
    void input()
    {
        scanf("%s",s);
        len = strlen(s);
    }
}pl[N];


int insert(char *s,tireTree *&rt)
{
    int num,i;
    if(rt == NULL)
        rt = sp++;
    tireTree *loc = rt;
    for(i = 0; s[i]; ++i)
    {
        num = s[i] - '0';
        if(loc->child[num] == NULL)
            loc->child[num] = sp++;
        if(loc->child[num]->isNum)
            return 0;
        loc = loc -> 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值