摘要: KMP算法 一个人能走的多远不在于他在顺境时能走的多快,而在于他在逆境时多久能找到曾经的自己! #include <iostream> #include <vector> using namespace std; vector<int> get_next(string p) { int i = 1, 阅读全文
posted @ 2025-04-20 15:15 片刻的自由 阅读(12) 评论(0) 推荐(0)