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

Trie树

时间:2017-03-09 19:50:07      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:clear   数据结构   ons   UI   span   key   mem   0ms   code   

记住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树

标签:clear   数据结构   ons   UI   span   key   mem   0ms   code   

原文地址:http://www.cnblogs.com/charlesblc/p/6527118.html

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