博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Trie
阅读量:6267 次
发布时间:2019-06-22

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

字典树

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 };

 

转载于:https://www.cnblogs.com/linyx/p/3978322.html

你可能感兴趣的文章
WPF获取某控件的位置,也就是偏移量
查看>>
Boost C++ 库 中文教程(全)
查看>>
solr查询优化(实践了一下效果比较明显)
查看>>
jdk目录详解及其使用方法
查看>>
说说自己对RESTful API的理解s
查看>>
通过layout实现可拖拽自动排序的UICollectionView
查看>>
服务器错误码
查看>>
javascript中的面向对象
查看>>
Splunk作为日志分析平台与Ossec进行联动
查看>>
yaffs文件系统
查看>>
Mysql存储过程
查看>>
NC营改增
查看>>
Lua
查看>>
Mysql备份系列(3)--innobackupex备份mysql大数据(全量+增量)操作记录
查看>>
postgresql 获取刚刚插入的数据主键id
查看>>
C# Activex开发、打包、签名、发布 C# Activex开发、打包、签名、发布 [转]
查看>>
05-Vue入门系列之Vue实例详解与生命周期
查看>>
验证码展示
查看>>
浅谈大型web系统架构
查看>>
淘宝大秒系统设计详解
查看>>