摘要: P3375 【模板】KMP 字符串匹配 #include<iostream> #include<cstdio> #include<cstring> using namespace std; const int N = 1e6 + 10; char s[N], t[N]; int n, m; int 阅读全文
posted @ 2024-01-09 12:27 cjwen6 阅读(44) 评论(0) 推荐(1)