病毒检测(C语言):关于字符串的模式匹配
头文件
#include
#include
#include
#include
#define OVERFLOW 0
#define OK 1
#define ERROR 0
typedef int Status;
typedef struct
{
char *ch;
int length;
}HString;
//生成一个串
Status StrAssign(HString *T,char *chars)
{
int i=0,j=0;
//清空之前的串
if(T->ch) free(T->ch);
i=strlen(chars);
//串长为零
if(!i)
{
T->ch=NULL;
T->length=0;
}
else
{
T->ch=(char *)malloc(i*sizeof(ch
共有 0 条评论