/*
串的匹配算法
2018.04.24
*/
#include<iostream>
#include<string.h>
#include<stdlib.h>
#include<stdio.h>
using namespace std;
#define MAXSIZE 100 //串的最大长度
#define OK 1
#define ERROR 0
#define OVERFLOW -1
typedef int Status;
//静态的,编译时确定了串的空间大小;
typedef struct{