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 2503--Babelfish(Trie)
#include
<
stdio.h
>
#include
<
cstring
>
#define
CAP 26
typedef
struct
NODE
{
NODE()
{
cnt
=
0
;
id
=
0
;
memset(next, NULL,
sizeof
(NODE));
}
;
NODE
*
next[CAP];
int
cnt;
int
id;
}
NODE;
const
int
MEMORY
=
150001
;
NODE memory[MEMORY] ;
class
BTree
{
public
:
BTree()
{
index
=
1
;
id_index
=
0
;
head
=
&
memory[
0
];
}
//
插入单词(返回单词ID)
int
insert(
char
*
str)
{
int
len
=
(
int
)strlen(str);
NODE
*
pt
=
head;
for
(
int
i
=
0
; i
<
len;
++
i)
{
if
(pt
->
next[str[i]
-
'
a
'
]
==
NULL)
{
pt
->
next[str[i]
-
'
a
'
]
=
&
memory[index
++
];
}
pt
=
pt
->
next[str[i]
-
'
a
'
];
}
(pt
->
cnt)
++
;
//
单词累加一
return
pt
->
id;
}
//
查找单词(返回单词个数)
int
find(
char
*
str,
int
&
pos )
{
int
len
=
(
int
)strlen(str);
NODE
*
pt
=
head;
for
(
int
i
=
0
; i
<
len;
++
i)
{
if
(pt
->
next[str[i]
-
'
a
'
]
==
NULL)
{
return
0
;
}
pt
=
pt
->
next[str[i]
-
'
a
'
];
}
pos
=
pt
->
id ;
return
pt
->
cnt ;
}
public
:
NODE
*
head;
int
id_index;
//
单词ID索引
}
;
int
main()
{
BTree tire ;
char
str[
2
][
12
] , dict[
100001
][
12
] , tmp ;
int
state
=
0
, wh
=
0
, pos
=
0
, x ;
while
(
true
)
{
tmp
=
getchar() ;
if
( state
==
0
&&
tmp
==
'
\n
'
)
break
;
if
( state
==
0
)
{
if
( tmp
==
'
'
)
{
str[wh][pos]
=
0
;
pos
=
0
;
state
=
1
;
wh
=
1
;
continue
;
}
str[wh][pos
++
]
=
tmp ;
}
if
( state
==
1
)
{
if
( tmp
==
'
\n
'
)
{
str[wh][pos]
=
0
;
x
=
tire.insert( str[wh] ) ;
strcpy( dict[x], str[
0
] ) ;
pos
=
0
;
state
=
0
;
wh
=
0
;
continue
;
}
str[wh][pos
++
]
=
tmp ;
}
}
while
( scanf(
"
%s
"
,
&
str[
0
])
!=
EOF )
{
x
=
tire.find( str[
0
] , pos ) ;
if
( x
!=
0
)
{
printf(
"
%s\n
"
, dict[pos]) ;
}
else
{
printf(
"
eh\n
"
) ;
}
}
return
0
;
}
posted on 2008-11-09 22:18
巫
阅读(240)
评论(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 © 巫