///////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2013,GXNU, School of Computer Science & Engineering //
// All Rights Reserved. //
// //
// Filename: kmp.cpp //
// Description: 文本“ababcabccabccacbab”中查找“abccac” 使用KMP算法//
////
// Version:0 //
// Author: zhaojj //
// Date&Time: 2013,3,19,19:11 //
//////////////////////////////////////////////////////////////////////////////////////////////////
//
#include<stdio.h>
//求next数组
void next(char a[],int n){
}
void main(){
}