摘要: 1 top - 11:22:42 up 9:53, 1 user, load average: 0.00, 0.01, 0.052 Tasks: 137 total, 1 running, 136 sleeping, 0 stopped, 0 zombie3 Cpu(s): 3.... 阅读全文
posted @ 2014-09-17 23:38 linyx 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 字典树 1 class Trie { 2 public: 3 Trie() { 4 root = new Node(); 5 } 6 7 ~Trie() { 8 destroy(root); 9... 阅读全文
posted @ 2014-09-17 23:32 linyx 阅读(155) 评论(0) 推荐(0) 编辑