算法与程序--游戏与玩乐
一个新程序员在计算技术上的学习经验
C++博客
|
首页
|
发新随笔
|
发新文章
|
联系
|
聚合
|
管理
随笔:142 文章:0 评论:37 引用:0
pku-2001
字典树的一个应用,地址:
http://acm.pku.edu.cn/JudgeOnline/problem?id=2001
#include
<
stdio.h
>
#include
<
string.h
>
struct
{
int
next[
26
];
int
c[
26
];
int
flag;
}
trie[
35000
];
int
now;
void
initt ()
{
now
=
0
;
for
(
int
i
=
0
; i
<
26
; i
++
)
{
trie[now].next[i]
=
0
;
trie[now].c[i]
=
0
;
}
trie[now].flag
=
0
;
now
++
;
}
int
add ()
{
for
(
int
i
=
0
; i
<
26
; i
++
)
{
trie[now].next[i]
=
0
;
trie[now].c[i]
=
0
;
}
trie[now].flag
=
0
;
now
++
;
return
now
-
1
;
}
int
ser (
char
*
str )
{
int
pre
=
0
;
while
(
*
str
!=
0
)
{
int
addr
=
*
str
-
'
a
'
;
if
(
!
trie[pre].next[addr] )
{
return
0
;
}
pre
=
trie[pre].next[addr];
str
++
;
}
if
(
!
trie[pre].flag )
{
return
0
;
}
return
pre;
}
int
ins (
char
*
str )
{
int
pre
=
0
;
while
(
*
str
!=
0
)
{
int
addr
=
*
str
-
'
a
'
;
if
(
!
trie[pre].next[addr] )
{
trie[pre].next[addr]
=
add ();
}
trie[pre].c[addr]
++
;
pre
=
trie[pre].next[addr];
str
++
;
}
trie[pre].flag
=
1
;
return
pre;
}
void
check (
char
*
str )
{
char
*
s
=
str;
int
pre
=
0
;
while
(
*
str
!=
0
)
{
int
addr
=
*
str
-
'
a
'
;
if
( trie[pre].c[addr]
==
1
)
{
while
( s
<=
str )
{
printf (
"
%c
"
,
*
s );
s
++
;
}
printf (
"
\n
"
);
return
;
}
pre
=
trie[pre].next[addr];
str
++
;
}
printf (
"
%s\n
"
, s );
}
char
str[
1005
][
25
];
int
main ()
{
char
in[
25
];
int
n
=
0
;
initt ();
while
( scanf (
"
%s
"
, in )
!=
EOF )
{
int
len
=
strlen ( in );
if
( len )
{
strcpy ( str[n
++
], in );
if
(
!
ser ( in ) )
{
ins ( in );
}
}
}
for
(
int
i
=
0
; i
<
n; i
++
)
{
printf (
"
%s
"
, str[i] );
check ( str[i] );
}
return
0
;
}
发表于 2008-04-09 12:47
ghbxx
阅读(223)
评论(0)
编辑
收藏
引用
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
<
2008年4月
>
日
一
二
三
四
五
六
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
公告
决定从线程开始!!
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(6)
给我留言
查看公开留言
查看私人留言
随笔档案
2009年3月 (1)
2008年12月 (1)
2008年9月 (1)
2008年8月 (6)
2008年7月 (11)
2008年6月 (49)
2008年4月 (40)
2008年3月 (33)
搜索
最新评论
1. re: pku-1811
楼主啊,稍微改一下你的代码咋就错了。不用miller labin直接用费马定理原来的写不是错就超时啊
--re
2. re: pku-1811
hugeint product_mod(hugeint A, hugeint B, hugeint C)
这个函数中, D = (D + D) % C; 应该错了吧。
--re
3. re: pku-1338
牛逼
--CAT
4. re: pku-3159
好复杂啊。。。
--搜咯翻车鱼
5. re: pku-1001(1)
大数模板啊 要是能支持小数就好了 O(∩_∩)O~
--abilitytao
阅读排行榜
1. RFC-1321MD5算法(1496)
2. SCOKS4协议及其改进(1472)
3. RFC1929-SCOKS V5的用户名/密码认证方式(1465)
4. RFC977-网络新闻组协议文档(1441)
5. RFC1928-SCOKS V5协议(1320)
评论排行榜
1. 大家好,这是一个程序和算法荟萃的地方(4)
2. pku-1338(4)
3. pku-1811(3)
4. pku-1723(3)
5. pku-2002(3)