博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVa 11362 - Phone List
阅读量:5745 次
发布时间:2019-06-18

本文共 1189 字,大约阅读时间需要 3 分钟。

题目:给你一组电话号码,推断是否有一些号码是其它的前缀(或相等)。

分析:字符串。字典树。利用字典树储存查询就可以,注意两种情况处理:

            1.先短后长(前缀在前);2.先长后短(前缀在后)。

说明:第580题了,目标600╮(╯▽╰)╭。

#include 
#include
#include
#include
#include
#include
using namespace std;#define nodesize 100001 //节点个数 #define dictsize 128 //字符集大小 //trietypedef struct node1 { int flag; //值域 node1* next[dictsize]; }tnode; tnode dict[nodesize]; class Trie { private: int size; tnode* root; public: Trie() {initial();} void initial() { memset(dict, 0, sizeof(dict)); size = 0; root = newnode(); } tnode* newnode() {return &dict[size ++];} int insert(char* word) { tnode* now = root; for (int i = 0 ; word[i] ; ++ i) { if (!now->next[word[i]]) now->next[word[i]] = newnode(); now = now->next[word[i]]; if (now->flag) return 1; }now->flag = 1; for (int i = 0 ; i < dictsize ; ++ i) if (now->next[i]) return 1; return 0; }}trie; //trie endint main(){ int t,n; char buf[12]; while (~scanf("%d",&t)) while (t --) { trie.initial(); scanf("%d",&n); int flag = 0; for (int i = 0 ; i < n ; ++ i) { scanf("%s",buf); if (trie.insert(buf)) flag = 1; } if (flag) printf("NO\n"); else printf("YES\n"); } return 0;}

转载地址:http://yoxzx.baihongyu.com/

你可能感兴趣的文章
JAVA线程14 - 新特性:同步工具
查看>>
运维是什么!
查看>>
烂泥:kvm安装windows系统蓝屏
查看>>
iPhone开发面试题--葵花宝典
查看>>
EdbMails Convert EDB to PST
查看>>
sed取反
查看>>
rhel iso yum
查看>>
RHEL 7 minimal install notes
查看>>
解决MYSQL负载过高问题
查看>>
如此清除sql server 2008 记住的用户名
查看>>
进程管理相关命令(16)
查看>>
VSFTP不能看到目录里面的内容问题
查看>>
IM系统架构设计之浅见
查看>>
linux查找文件里面的内容
查看>>
seo关键词的定位,选择关键还应该是词
查看>>
5..网站META标签的优化--解析怎么去优化META标签
查看>>
HTML页面不通过Javascript怎样获取其他控件的值
查看>>
andriod 电话拨号器
查看>>
JDK、J2EE、J2SE、J2ME的区别
查看>>
介绍一下Cocao 和Cocoa Touch
查看>>