摘要: 模板 : const int Bit = 32; struct Trie { Trie *ch[2]; LL v; inline void init(){ for(int i=0; i<2; i++) this->ch[i] = NULL; this->v = -1; } }; Trie *root 阅读全文
posted @ 2017-09-29 15:23 qwerity 阅读(441) 评论(0) 推荐(0) 编辑