博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
trie tree(字典树)
阅读量:4993 次
发布时间:2019-06-12

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

hihocoder题目():#1014  trie树

1 #include 
2 using namespace std; 3 class trieTree 4 { 5 public: 6 trieTree() 7 { 8 isword=false; 9 for (int i=0;i<26;i++) 10 { 11 next[i]=NULL; 12 } 13 } 14 ~trieTree() 15 { 16 for (int i=0;i<26;i++) 17 { 18 if (next[i]!=NULL) 19 { 20 destory(next[i]); 21 } 22 } 23 } 24 void destory(trieTree* index); 25 int insertWord(char*); 26 int searchWord(char*); 27 int findWord(trieTree* index); 28 private: 29 trieTree* next[26]; 30 bool isword; 31 }; 32 int main() 33 { 34 int dictionarySize; 35 trieTree root; 36 char word[10]; 37 cin>>dictionarySize; 38 int i=0; 39 for(i=0;i
>word; 42 root.insertWord(word); 43 } 44 cin>>dictionarySize; 45 for(i=0;i
>word; 48 cout<
<
next[*word-'a']) 59 { 60 index->next[*word-'a']=new trieTree; 61 } 62 if (!index->next[*word-'a']) 63 { 64 return -1; 65 } 66 else 67 { 68 index=index->next[*word-'a']; 69 } 70 word++; 71 } 72 index->isword=true; 73 return 0; 74 } 75 int trieTree::searchWord(char* word) 76 { 77 trieTree* index=this; 78 int count=0; 79 while(*word) 80 { 81 if(index->next[*word-'a']==NULL) 82 { 83 return 0; 84 } 85 index=index->next[*word-'a']; 86 word++; 87 } 88 count=findWord(index); 89 return count; 90 } 91 int trieTree::findWord(trieTree* index) 92 { 93 int count=0; 94 if(index->isword) 95 count++; 96 for(int i=0;i<26;i++) 97 { 98 if(index->next[i]!=NULL) 99 {100 count+=findWord(index->next[i]);101 }102 }103 return count;104 }105 void trieTree::destory(trieTree* index)106 {107 for (int i=0;i<26;i++)108 {109 if (index->next[i]!=NULL)110 {111 destory(index->next[i]);112 index->next[i]=NULL;113 }114 }115 delete index;116 }

通过编译之后,发现提交上去还是错了,Wrong Answer!

转载于:https://www.cnblogs.com/howardhuo/p/4683349.html

你可能感兴趣的文章
Docker从入门到实战(一)
查看>>
MySql join匹配原理
查看>>
C++的高效从何而来
查看>>
吴裕雄--天生自然 HADOOP大数据分布式处理:安装XShell
查看>>
吴裕雄--天生自然 JAVASCRIPT开发学习:输出
查看>>
将已有的工程项目添加到Xcode到Git管理中
查看>>
吴裕雄 实战PYTHON编程(8)
查看>>
xhtml
查看>>
poj 1113 Wall (凸包模板题)
查看>>
cf 535B Tavas and SaDDas
查看>>
OO-面对对象的特征--多态、抽象
查看>>
看准网免登陆查看
查看>>
用pygame实现打飞机游戏-1-搭建框架
查看>>
io编程,bio,nio,aio
查看>>
windows 关于时间的计算
查看>>
面向对象编程思想-代理模式
查看>>
HttpClient获取Cookie的两种方式
查看>>
Windows 7中的电源计划及维护
查看>>
Spring MVC 配置类 WebMvcConfigurerAdapter
查看>>
js获取url参数
查看>>