2014年11月10日

《 字典树模板_递归 》

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

posted @ 2014-11-10 21:43 M.D.LUFFI 阅读(192) 评论(0) 推荐(0) 编辑

导航