摘要: #include"bits/stdc++.h" using namespace std; struct tree{ tree* Next[26]; int cnt; }*root; tree* init(){ tree* t=(tree*)malloc(sizeof(tree)); memset(t 阅读全文
posted @ 2018-10-02 22:08 Jathon-cnblogs 阅读(146) 评论(0) 推荐(0) 编辑