KMP算法的C++实现
这个问题阮一峰老师讲的很清楚,链接
这里我只贴一下我的C++实现代码:
#include <iostream>
#include <cstring>
#include <string>
#include <set>
#include <map>
using namespace std; void BuildPatchMatchTable(int *partMatchTable, char *findstr)
{
if(findstr == NULL)
return;
partMatchTable[] = ;
int sizefind = strlen(findstr);
for(int i = ; i < sizefind; ++i)
{
set<string> preset;
string tmppre = "";
tmppre = findstr[];
preset.insert(tmppre);
for(int j = ; j < i; ++j)
{
tmppre = tmppre + findstr[j];
preset.insert(tmppre);
} set<string> postset;
string tmppost = "";
tmppost = findstr[i];
postset.insert(tmppost);
for(int j = i - ; j > ; --j)
{
tmppost = findstr[j] + tmppost;
postset.insert(tmppost);
}
set<string> comset;
for(set<string>::iterator beg = preset.begin(); beg != preset.end(); ++beg)
{
if(postset.count(*beg) > )
comset.insert(*beg);
}
int maxlen = ;
for(set<string>::iterator beg = comset.begin(); beg != comset.end(); ++beg)
{
if((*beg).size() > maxlen)
maxlen = (*beg).size();
}
partMatchTable[i] = maxlen;
}
} int kmp(char *srcstr, char *findstr)
{
if(srcstr == NULL || findstr == NULL)
return -;
int lensrc = strlen(srcstr);
int lenfind = strlen(findstr);
int *partMatchTable = new int[lenfind];
BuildPatchMatchTable(partMatchTable, findstr);
for(int i = ; i < lenfind; ++i)
cout << findstr[i] << "\t" << partMatchTable[i] << endl;
int curFind = ;
for(int i = ; i < lensrc; )
{
if(findstr[curFind] == srcstr[i])
{
++i;
++curFind;
}
else
{
if(curFind == )
++i;
else
{
int movestep = curFind - partMatchTable[curFind-];
i += movestep;
curFind = ;
}
}
if(curFind == lenfind)
{
delete []partMatchTable;
return i - lenfind;
}
}
return -;
delete []partMatchTable;
}
int main()
{
char srcStr[] = "bbc abcdab abcdabcdabde";
char findStr[] = "abcdabd";
cout << "pos:" << kmp(srcStr, findStr) << endl; char srcStr2[] = "bbc abcdab abcdabcdabdezzz";
char findStr2[] = "zzz";
cout << "pos:" << kmp(srcStr2, findStr2) << endl; char srcStr3[] = "bbc abcdab abcdabcdabde";
char findStr3[] = "zzz";
cout << "pos:" << kmp(srcStr3, findStr3) << endl;
}
关键问题
1. 求出部分匹配值表
2. 移动次数= 已匹配个数 - 最后一个匹配的字符的部分匹配结果
KMP算法的C++实现的更多相关文章
- 简单有效的kmp算法
以前看过kmp算法,当时接触后总感觉好深奥啊,抱着数据结构的数啃了一中午,最终才大致看懂,后来提起kmp也只剩下“奥,它是做模式匹配的”这点干货.最近有空,翻出来算法导论看看,原来就是这么简单(先不说 ...
- KMP算法
KMP算法是字符串模式匹配当中最经典的算法,原来大二学数据结构的有讲,但是当时只是记住了原理,但不知道代码实现,今天终于是完成了KMP的代码实现.原理KMP的原理其实很简单,给定一个字符串和一个模式串 ...
- 萌新笔记——用KMP算法与Trie字典树实现屏蔽敏感词(UTF-8编码)
前几天写好了字典,又刚好重温了KMP算法,恰逢遇到朋友吐槽最近被和谐的词越来越多了,于是突发奇想,想要自己实现一下敏感词屏蔽. 基本敏感词的屏蔽说起来很简单,只要把字符串中的敏感词替换成"* ...
- KMP算法实现
链接:http://blog.csdn.net/joylnwang/article/details/6778316 KMP算法是一种很经典的字符串匹配算法,链接中的讲解已经是很明确得了,自己按照其讲解 ...
- 数据结构与算法JavaScript (五) 串(经典KMP算法)
KMP算法和BM算法 KMP是前缀匹配和BM后缀匹配的经典算法,看得出来前缀匹配和后缀匹配的区别就仅仅在于比较的顺序不同 前缀匹配是指:模式串和母串的比较从左到右,模式串的移动也是从 左到右 后缀匹配 ...
- 扩展KMP算法
一 问题定义 给定母串S和子串T,定义n为母串S的长度,m为子串T的长度,suffix[i]为第i个字符开始的母串S的后缀子串,extend[i]为suffix[i]与字串T的最长公共前缀长度.求出所 ...
- 字符串模式匹配之KMP算法图解与 next 数组原理和实现方案
之前说到,朴素的匹配,每趟比较,都要回溯主串的指针,费事.则 KMP 就是对朴素匹配的一种改进.正好复习一下. KMP 算法其改进思想在于: 每当一趟匹配过程中出现字符比较不相等时,不需要回溯主串的 ...
- 算法:KMP算法
算法:KMP排序 算法分析 KMP算法是一种快速的模式匹配算法.KMP是三位大师:D.E.Knuth.J.H.Morris和V.R.Pratt同时发现的,所以取首字母组成KMP. 少部分图片来自孤~影 ...
- BF算法与KMP算法
BF(Brute Force)算法是普通的模式匹配算法,BF算法的思想就是将目标串S的第一个字符与模式串T的第一个字符进行匹配,若相等,则继续比较S的第二个字符和 T的第二个字符:若不相等,则比较S的 ...
- KMP算法-next函数求解
KMP函数求解:一种改进的字符串匹配算法,由D.E.Knuth,J.H.Morris和V.R.Pratt同时发现,因此人们称它为KMP算法.KMP算法的关键是利用匹配失败后的信息,尽量减少模式串与主串 ...
随机推荐
- 使用RX方式模拟DoubanFm的登陆
WP7下的Get Post都是异步的 关于RX http://www.cnblogs.com/yangecnu/archive/2012/11/03/Introducting_ReactiveExte ...
- 1100. Mars Numbers (20)
People on Mars count their numbers with base 13: Zero on Earth is called "tret" on Mars. T ...
- js中typeof可以准确判断哪些变量类型
typeof 运算符返回一个用来表示表达式的数据类型的字符串. 可能的字符串有:"number"."string"."boolean".& ...
- andriod Kernel configuration is invalid
error: ERROR: Kernel configuration is invalid. include/generated/autoconf.h or include/conf ...
- 【quartz】 入门-配置文件
quartz 启动 NameValueCollection props = (NameValueCollection)ConfigurationManager.GetSection("qua ...
- NGUI3.5系列教程之 一些小功能的实现
(一)可拖动窗体的实现: 1:添加一个Sprite为鼠标点击区域,改名为:DragSprite 2:给DragSprite添加Collider 3:给DragSprite添加Drag Object , ...
- UML中的六大关系
转自:http://www.cnblogs.com/shengtianlong/archive/2010/10/23/1858953.html UML定义的关系主要有六种:依赖.类属.关联.实现.聚合 ...
- JDBC连接数据库代码
//连接是需要导包 http://pan.baidu.com/s/1o6nyuOa /*配合数据库建立表 create database day14 character set utf8 collat ...
- NodeJS - Express 3.0下ejs模板使用 partial展现 片段视图
如果你也在看Node.js开发指南,如果你也在一步一步实现 microBlog 项目!也许你会遇到本文提到的问题,如果你用的是Express 3.0 本书实例背景是 Express 2.0 而如今升级 ...
- easyui的datagrid和panel如何让标题动态改变?
解决方法: 用$(this).datagrid("getPanel").panel("setTitle","new title").$(th ...