标签: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);
}
};
标签:clear 数据结构 ons UI span key mem 0ms code
原文地址:http://www.cnblogs.com/charlesblc/p/6527118.html