gzwzm06
C++博客
::
首页
::
新随笔
::
联系
::
聚合
::
管理
::
1 随笔 :: 52 文章 :: 17 评论 :: 0 Trackbacks
<
2024年11月
>
日
一
二
三
四
五
六
27
28
29
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
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(3)
给我留言
查看公开留言
查看私人留言
随笔档案
2009年5月 (1)
文章分类
DP(12)
(rss)
Hash应用(4)
(rss)
几何(1)
(rss)
模拟题(2)
(rss)
数据结构(12)
(rss)
数学(2)
(rss)
搜索(2)
(rss)
图论(7)
(rss)
与Tree相关的题(2)
(rss)
字符串处理(8)
(rss)
文章档案
2009年5月 (8)
2009年4月 (5)
2009年3月 (14)
2008年11月 (20)
2008年10月 (5)
搜索
最新评论
1. re: Pku 2774--Long Long Message(后缀树)
求教大牛,那个Lt属性是记录什么的
--dereky
2. re: POJ 2481(树状数组)
@gzwzm06
哦,实在是不好意思,确实是那个地方,现在过了,谢谢了啊。
--Klion
3. re: POJ 2481(树状数组)
你再检查下,cc[j].m_e == cc[j].m_e这个条件肯定是真的,没有意义吧
--gzwzm06
4. re: POJ 2481(树状数组)
@gzwzm06
两个相同一起比较也就是两个区间是一样的,起点和终点是相同的,和您的第80行比较的应该是一样的吧?
--Klion
5. re: POJ 2481(树状数组)
评论内容较长,点击标题查看
--gzwzm06
Pku 1816--Wild Words(Trie + DFS)
#include
<
stdio.h
>
#include
<
string
>
#include
<
algorithm
>
using
namespace
std ;
struct
WORD
{
int
ID ;
//
模式串编号,处理重复
WORD
*
next ;
}
;
const
int
MAXN
=
100001
;
const
int
MAXM
=
101
;
int
N, M ;
int
match[MAXN] , num ;
//
保存匹配结果
char
words[MAXM][
25
] ;
WORD g_Temp[MAXN];
int
g_pos ;
const
int
CAP
=
28
;
typedef
struct
NODE
//
Trie 节点
{
NODE()
{
m_Pos.next
=
NULL ;
current
=
&
m_Pos ;
memset(next, NULL,
sizeof
(NODE));
}
;
NODE
*
next[CAP];
WORD m_Pos ;
//
处理重复
WORD
*
current ;
}
NODE;
const
int
MEMORY
=
30000
;
NODE memory[MEMORY] ;
class
BTree
{
public
:
BTree()
{
index
=
1
;
head
=
&
memory[
0
];
}
void
Insert(
char
*
str,
const
int
&
w)
{
int
len
=
(
int
)strlen(str);
NODE
*
pt
=
head ;
for
(
int
i
=
0
; i
<
len;
++
i)
{
if
( str[i]
==
'
*
'
)
{
if
( pt
->
next[
26
]
==
NULL )
{
pt
->
next[
26
]
=
&
memory[index
++
] ;
}
pt
=
pt
->
next[
26
] ;
}
else
if
( str[i]
==
'
?
'
)
{
if
( pt
->
next[
27
]
==
NULL )
{
pt
->
next[
27
]
=
&
memory[index
++
] ;
}
pt
=
pt
->
next[
27
] ;
}
else
{
if
(pt
->
next[str[i]
-
'
a
'
]
==
NULL)
{
pt
->
next[str[i]
-
'
a
'
]
=
&
memory[index
++
];
}
pt
=
pt
->
next[str[i]
-
'
a
'
];
}
}
//
记录模式串编号
if
( pt
->
m_Pos.next
==
NULL )
pt
->
current
=
&
pt
->
m_Pos ;
g_Temp[g_pos].ID
=
w ;
g_Temp[g_pos].next
=
NULL ;
pt
->
current
->
next
=
&
g_Temp[g_pos
++
] ;
pt
->
current
=
pt
->
current
->
next ;
}
void
DFS( NODE
*
ptr,
const
int
&
pos ,
int
w )
{
if
( words[pos][w]
==
'
\0
'
)
{
WORD
*
p
=
ptr
->
m_Pos.next ;
while
( p )
{
match[num]
=
p
->
ID ;
num
++
;
p
=
p
->
next ;
}
while
( ptr
->
next[
26
] )
ptr
=
ptr
->
next[
26
] ;
p
=
ptr
->
m_Pos.next ;
while
( p )
{
match[num]
=
p
->
ID ;
num
++
;
p
=
p
->
next ;
}
return
;
}
//
遇到'*',将当前位置到结束符的字符一个一个匹配
if
( ptr
->
next[
26
]
!=
NULL )
{
for
(
int
i
=
w ; i
<=
strlen(words[pos]) ;
++
i )
{
DFS( ptr
->
next[
26
], pos, i ) ;
}
}
//
遇到'?'或字母,直接跳到下一个
if
( ptr
->
next[
27
]
!=
NULL )
{
DFS( ptr
->
next[
27
], pos, w
+
1
) ;
}
if
( ptr
->
next[words[pos][w]
-
'
a
'
]
!=
NULL )
{
DFS( ptr
->
next[words[pos][w]
-
'
a
'
], pos, w
+
1
) ;
}
}
public
:
NODE
*
head;
int
index;
}
;
void
Init()
{
g_pos
=
0
;
}
int
main()
{
int
i ;
char
tempstr[
22
] ;
BTree trie ;
scanf(
"
%d %d
"
,
&
N,
&
M) ;
Init() ;
for
( i
=
0
; i
<
N ;
++
i )
{
scanf(
"
%s
"
,
&
tempstr) ;
trie.Insert(tempstr, i) ;
}
for
( i
=
0
; i
<
M ;
++
i )
{
scanf(
"
%s
"
,
&
words[i]) ;
num
=
0
;
trie.DFS( trie.head, i,
0
) ;
if
( num
==
0
)
{
printf(
"
Not match\n
"
) ;
}
else
{
sort( match, match
+
num ) ;
printf(
"
%d
"
, match[
0
]) ;
for
(
int
j
=
1
; j
<
num ;
++
j )
{
if
( match[j]
!=
match[j
-
1
] )
printf(
"
%d
"
, match[j]) ;
}
printf(
"
\n
"
) ;
}
}
return
0
;
}
posted on 2008-11-09 17:05
巫
阅读(401)
评论(0)
编辑
收藏
引用
所属分类:
字符串处理
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
相关文章:
POJ 2408--Anagram Groups
Pku 3080--Blue Jeans(暴力枚举 + KMP)
Pku 3630--Phone List(Trie)
Pku 2503--Babelfish(Trie)
Pku 1816--Wild Words(Trie + DFS)
Pku 2513--Colored Sticks(Trie)
Pku 2774--Long Long Message(后缀数组)
Pku 2774--Long Long Message(后缀树)
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
Powered by:
C++博客
Copyright © 巫