高博宁
高博宁
全部文章
分类
算法(2)
算法记忆(1)
归档
标签
去牛客网
登录
/
注册
高博宁的博客
全部文章
(共1篇)
C++ | KMP
#include<bits/stdc++.h> using namespace std; void getNext(string s,int next[]){ int i=1,j=0; next[1]=0; while(i<s.size()){ if(j==0||s[i-...
C++
字符串
2026-04-07
0
24