摘要: 1.动态分配空间 const int N = 27; struct trie{ trie *Next[N]; int flag; trie(){ flag=1; memset(Next,NULL,sizeof(Next)); } }*root; void insert(string s){ int 阅读全文
posted @ 2023-03-22 20:56 天雷小兔 阅读(22) 评论(3) 推荐(0)