02 2016 档案

摘要:class TrieNode { public: bool exist; TrieNode* children[26]; TrieNode() { exist = false; memset(children, 0, sizeof(children)); } }; class Trie { publ 阅读全文
posted @ 2016-02-28 13:03 飞飞喵 阅读(273) 评论(1) 推荐(0)