摘要: 1 #include 2 #include 3 #define MaxSize 1000010 4 using namespace std; 5 6 char s[MaxSize]; 7 int Next[MaxSize]; 8 int Len; 9 10 void GetNext() 11 { 12 int i = 0, j = Next[0] = -1; 1... 阅读全文
posted @ 2018-04-26 23:29 duck_lu 阅读(141) 评论(0) 推荐(0) 编辑