题目链接:http://poj.org/problem?id=3461
思路分析:字符串匹配问题,使用KMP算法解决。
代码如下:
#include <stdio.h> char T[1000005], W[10005]; int Next[10005]; int Len_T, Len_W; void GetNext( ) { int i = 0, j = -1; Next[0] = -1; if ( W[0] == '