首页 > 其他 > 详细

两个字符串之续

时间:2014-04-06 01:08:19      阅读:512      评论:0      收藏:0      [点我收藏+]

两个字符串之续(KMP)

个人信息:就读于燕大本科软件工程专业 目前大三;

本人博客:google搜索“cqs_2012”即可;

个人爱好:酷爱数据结构和算法,希望将来搞科研为人民作出自己的贡献;

博客内容:两个字符串;

博客时间:2014-4-5

编程语言:C++ (面向过程)

编程坏境:Windows 7 专业版

编程工具:vs2008 32位编译器

续集之原博客:两个字符串

  • 引言

陪女朋友玩了一天,真开心,晚上她回来就睡。。。我实现了一下KMP,总结于此,其实有时候问题真的没有我们想象的那么难,只要我们行动起来。

  • 题目

两个字符串 问题1 : 判断一个字符串是否是另一个字符串的字串,算法是KMP算法。

  • 思路

详细教程请看我的博客 KMP详解

  • 实验

程序截图

bubuko.com,布布扣

第一行输入 一个字符串a

第二行输入 一个字符串b

第三行输出 b是否是a的字串,如果是 则输出1 ,否则输出 0

接着循环测试如上

  • 代码

test.cpp

// head file
#include<iostream>
#include<string>
using namespace std;

// function: KMP 
// input: two string a.length >= b.length
// output: a bool result
// 功能:检测b是否是a的字串,若是返回 true,否则返回 false
bool _KMP_algorithm(string a,string b);


// function: main
int main()
{
	string a,b;
	while(cin>>a>>b)
		cout<<_KMP_algorithm(a,b)<<endl;
	system("pause");
	return 0;
}

// function: KMP 
// input: two string a.length >= b.length
// output: a bool result
// 功能:检测b是否是a的字串,若是返回 true,否则返回 false
bool _KMP_algorithm(string a,string b)
{
	if(!a.empty() && !b.empty())
	{
		if(a.length() >= b.length())
		{
			// first action
			int * yuchuli = new int[b.length()];
			yuchuli[0] = 0;
			string str1,str2;
	
			for(int i=1;i<b.length();i++)
			{
				yuchuli[i] = 0;
				for(int j=1;j <= i;j++)
				{
					str1 = b.substr(0,i-j+1);
					str2 = b.substr(j,i-j+1);
					if(str1.compare(str2) == 0)
					{
						yuchuli[i] = i-j+1;
						break;
					}
				}
			}

			// second action
			for(int i=0,j=0;i<a.length()&&j<b.length();)
			{
				if(a[i] != b[j])
				{
					if( j != 0 )
					{
						// j = j - (  (j-1+1)  -  yuchuli[j-1] ) = yuchuli[j-1]; 
						j =  yuchuli[j-1];
					}
					else i++;
				}
				else if(j == b.length()-1)
				{
					return true;
				}
				else 
				{
					j++;i++;
				}
			}
			return false;	

		}
		else return false;
	}
	else
	{
		cout<<"exception of function KMP_algorithm input"<<endl;
		return false;
	}
}


 

两个字符串之续,布布扣,bubuko.com

两个字符串之续

原文:http://blog.csdn.net/cqs_experiment/article/details/23000117

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!