首页 > 其他 > 详细

208. 实现 Trie (前缀树)

时间:2020-02-18 00:27:09      阅读:104      评论:0      收藏:0      [点我收藏+]

主要是记录一下这个数据结构。

技术分享图片

 

技术分享图片

 

 比如这个trie树,包含三个单词:sea,sells,she。

代码:

 1 class Trie {
 2     bool isWord;
 3     vector<Trie*> children;
 4 public:
 5     /** Initialize your data structure here. */
 6     Trie() {
 7         isWord=false;
 8         children.assign(26,nullptr);
 9     }
10     
11     /** Inserts a word into the trie. */
12     void insert(string word) {
13         if(word.empty()){return;}
14         auto cur=this;
15         for(int i=0;i<word.size();++i){
16             if(cur->children[word[i]-a]==nullptr){
17                 cur->children[word[i]-a]=new Trie();
18             }
19             cur=cur->children[word[i]-a];
20         }
21         cur->isWord=true;
22     }
23     
24     /** Returns if the word is in the trie. */
25     bool search(string word) {
26         auto cur=this;
27         for(int i=0;i<word.size();++i){
28             if(cur->children[word[i]-a]==nullptr){
29                 return false;
30             }
31             cur=cur->children[word[i]-a];
32         }
33         return cur->isWord;
34     }
35     
36     /** Returns if there is any word in the trie that starts with the given prefix. */
37     bool startsWith(string prefix) {
38         auto cur=this;
39         for(int i=0;i<prefix.size();++i){
40             if(cur->children[prefix[i]-a]==nullptr){
41                 return false;
42             }
43             cur=cur->children[prefix[i]-a];
44         }
45         return true;
46     }
47 };
48 
49 /**
50  * Your Trie object will be instantiated and called as such:
51  * Trie* obj = new Trie();
52  * obj->insert(word);
53  * bool param_2 = obj->search(word);
54  * bool param_3 = obj->startsWith(prefix);
55  */

 

208. 实现 Trie (前缀树)

原文:https://www.cnblogs.com/FdWzy/p/12324191.html

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