首页 > 其他 > 详细

【例3-2】单词查找树

时间:2020-12-04 16:49:35      阅读:88      评论:0      收藏:0      [点我收藏+]

http://ybt.ssoier.cn:8088/problem_show.php?pid=1337

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 char s[100005];
 4 int tot=0;//编号
 5 int trie[100005][26];//字典树
 6 void insert(char *s){//插入单词s
 7     int len=strlen(s);//单词s的长度
 8     int root=0;//字典树上当前匹配到的结点
 9     for(int i=0;i<len;i++){
10         int id=s[i]-A;//子节点编号
11         if(trie[root][id]==0)//如果之前没有从root到id的前缀 
12             trie[root][id]=++tot;//插入
13         root=trie[root][id];//顺着字典树往下走
14     }
15 }
16 int main(){
17     while(scanf("%s",s)!=EOF)
18         insert(s);
19     printf("%d\n", tot + 1);
20     return 0;
21 }

 

【例3-2】单词查找树

原文:https://www.cnblogs.com/tflsnoi/p/14085530.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!