码迷,mamicode.com
首页 > 编程语言 > 详细

模式匹配-BF算法

时间:2014-10-23 12:27:37      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:算法   typedef   iostream   cstring   amp   

/***字符串匹配算法***/
#include<cstring>
#include<iostream>
using namespace std;

#define OK 1
#define ERROR 0
#define OVERFLOW -2
typedef int Status;
#define MAXSTRLEN 255   		//用户可在255以内定义最长串长
typedef char SString[MAXSTRLEN+1];		//0号单元存放串的长度

Status StrAssign(SString T, char *chars) { //生成一个其值等于chars的串T
	int i;
	if (strlen(chars) > MAXSTRLEN)
		return ERROR;
	else {
		T[0] = strlen(chars);
		for (i = 1; i <= T[0]; i++)
			T[i] = *(chars + i - 1);
		return OK;
	}
}

//填写4.1 BF算法
int Index(SString S, SString T, int pos)
{
	//返回模式T在主串S中第pos个字符之后第s一次出现的位置。若不存在,则返回值为0
	//其中,T非空,1≤pos≤StrLength(S)
	int i=pos;
	int j=1;
	while(i<=S[0]&&j<=T[0])
	{
		if(S[i]==T[j]) 
		{
			i++;
			j++;
		}
		else
		{
			i=i-j+2;
			j=1;
		}
	} 
	if(j>T[0])  return i-T[0];
	else        return 0;
}//Index

int main()
{
	SString S;
	StrAssign(S,"bbaaabbaba");
	SString T;
	StrAssign(T,"abb") ;
	cout<<"主串和子串在第"<<Index(S,T,1)<<"个字符处首次匹配\n";
	return 0;
}

模式匹配-BF算法

标签:算法   typedef   iostream   cstring   amp   

原文地址:http://blog.csdn.net/holyang_1013197377/article/details/40394651

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!