poj3461 Oulipo
摘要:
题目链接:http://poj.org/problem?id=3461题意就是求模式串在一个主串中出现的次数KMP的简单应用代码: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 #define maxn 1000100 7 int f[maxn]; 8 char s1[maxn]; 9 char s2[maxn];10 int n,m;11 void callfail()12 {13 int i,j=0,k=-1;14 f[0]=-1;15 while(j<n)16 {17 ... 阅读全文
posted @ 2013-08-25 22:35 GyyZyp 阅读(152) 评论(0) 推荐(0) 编辑