2014年10月9日

《 字典树模板_非递归 》

摘要: 1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 struct tree 8 { 9 int count;10 tree *next[26];11 };12 tree *head;13 14 voi... 阅读全文

posted @ 2014-10-09 21:14 M.D.LUFFI 阅读(169) 评论(0) 推荐(0) 编辑

导航