Trie树
Posted 笨鸟居士的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Trie树相关的知识,希望对你有一定的参考价值。
记住Trie树的基本数据结构就可以了。
https://discuss.leetcode.com/topic/15581/80ms-clear-c-code-with-detailed-explanations
class TrieNode {
public:
bool isKey;
TrieNode* children[26];
TrieNode(): isKey(false) {
memset(children, NULL, sizeof(TrieNode*) * 26);
}
};
以上是关于Trie树的主要内容,如果未能解决你的问题,请参考以下文章