摘要: 题意: 给出n个单词,文章由n个单词组成,求每个单词在文章中的出现次数 思路: 实现: #include <stdio.h> #include <string.h> const int N = 1e6 + 5; int tr[N][26], idx = 1, nex[N], q[N], id[N], 阅读全文
posted @ 2022-08-03 19:15 zxr000 阅读(25) 评论(0) 推荐(0) 编辑