2017年5月22日
摘要: #1014 : Trie树 思路:Trie树模板题 1 #include<stdio.h> 2 #include<string.h> 3 4 typedef struct Trie 5 { 6 int count; 7 struct Trie* next[26]; 8 }Trie_Node; 9 1 阅读全文
posted @ 2017-05-22 17:55 dxy1993 阅读(175) 评论(0) 推荐(0) 编辑