摘要: 字典树+dfs就完事了 class Solution { public: int tree[10010][26]; bool vis[10010]; int cnt; vector<string> v; void build(string str) { int len = str.length(); 阅读全文
posted @ 2021-10-27 21:14 WTSRUVF 阅读(30) 评论(0) 推荐(0) 编辑