摘要: ```C++ // 查询异或最大值,每次插入和查询时间都是log(C) template class trie01 { vector> tree; public: trie01() : tree(1, vector(2, 0)) {} // 插入待检查的数字 void insert (T x) { 阅读全文
posted @ 2023-07-08 16:14 hellozhangjz 阅读(55) 评论(0) 推荐(0)