/**
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 ->
[字典树 ] hdu 1671 phone list
最新推荐文章于 2024-08-15 02:19:57 发布
这篇博客介绍了一种使用字典树(Trie Tree)解决HDU 1671题目的方法,该题目与POJ 3630相同。博主通过定义结构体`tireTree`来实现字典树,并提供了`insert`函数用于插入电话号码。在主函数中,博主读取电话号码列表,对其进行排序,然后尝试插入到字典树中。如果所有电话号码都能成功插入,程序输出"YES",否则输出"NO"。
摘要由CSDN通过智能技术生成