kmp+循環節--學習筆記

kmp入門 求T串在S串中出現了幾次之類 先看代碼(看一遍就好了,不看也行) #include <bits/stdc++.h> using namespace std; string s,t; int now,nex[100010]={},ans=0; int main() { cin>>s>>t; now=-1; nex[0]=-1; for (int i=1;i<t.size()
相關文章
相關標籤/搜索