摘要: Trie:高效地存储和查找字符串集合的数据结构。 AcWing 835. Trie字符串统计 原题链接 #include <iostream> #include <algorithm> using namespace std; const int N = 1e5 + 10; int son[N][2 阅读全文
posted @ 2023-02-25 12:26 恺雯 阅读(14) 评论(0) 推荐(0) 编辑