码迷,mamicode.com
首页 > 其他好文 > 详细

Trie

时间:2014-09-18 00:32:52      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   ar   for   div   sp   log   

字典树

 1 class Trie {
 2     public:
 3         Trie() {
 4             root = new Node();
 5         }
 6 
 7         ~Trie() {
 8             destroy(root);
 9         }
10 
11         void insert(string word) {
12             Node* next = root;
13             for (int i = 0; i < word.length(); ++i) {
14                 if (next->next[word[i] - a] == NULL) {
15                     next->next[word[i] - a] = new Node();
16                 }
17                 next = next->next[word[i] - a];            
18             }
19             next->val++; // 只要最尾个字符的位置计数
20         }
21 
22         int search(string word) {
23             Node* next = root;
24             int i = 0;
25             for (; i < word.length() && next != NULL; ++i) {
26                 next = next->next[word[i] - a];
27             }
28             if (i == word.length() && next != NULL) {
29                 return next->val;
30             } else {
31                 return 0;
32             }    
33         }
34 
35     private:
36         struct Node {
37             int val;
38             Node *next[26];
39             Node(): val(0) {
40                 memset(next, 0, sizeof(Node*) * 26);
41             }
42         };
43 
44         void destroy(Node* p) {
45             if (p == NULL) return;
46             for (int i = 0; i < 26; ++i) {
47                 destroy(p->next[i]);
48             }
49             delete p;
50         }
51         Node* root;    
52 };

 

Trie

标签:des   style   blog   color   ar   for   div   sp   log   

原文地址:http://www.cnblogs.com/linyx/p/3978322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!