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

字符串朴素匹配C++实现

时间:2015-05-03 19:06:06      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

/*
 *字符串的朴素匹配
 通过每一个字母对应着主串
 进行一次的进行比较,知道
 其中的一个串的所有字母都匹配成功
 */
#include <iostream>
#include <cstdio>
#include <malloc.h>
#include <cstring>
using namespace std;
int index(char *a, char *b)
{
	int tarindex = 0;
	while(a[tarindex] != '\0')
	{
			int tarlen = tarindex;
			int patlen;
			for(patlen = 0; b[patlen] != 0; patlen++)
			{
					if(a[tarlen++] != b[patlen])
					{
						break;
					}	
			}
			if(b[patlen] == '\0')
			{
				return tarindex;
			}
			tarindex++;
	}
	return -1;
}
int main()
{
	char *a;
	char *b;
	a = (char*)malloc(sizeof(char));
	b = (char*)malloc(sizeof(char));
	gets(a);
	gets(b);
	cout<<"第 "<<index(a, b) + 1<<" 个字母开始匹配!"<<endl;
	return 0;
}

字符串朴素匹配C++实现

标签:

原文地址:http://blog.csdn.net/u012965373/article/details/45460195

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