简介:
sunday算法是daniel m.sunday于1990年提出的一种字符串模式匹配算法。其核心思想是:在匹配过程中,模式串并不被要求一定要按从左向右进行比较还是从右向左进行比较,它在发现不匹配时,算法能跳过尽可能多的字符以进行下一步的匹配,从而提高了匹配效率。
思路:
sunday 算法 与 kmp 算法 一样是从前往后匹配,在匹配失败时关注的是主串中参加匹配的最末位字符的下一位字符。
1、如果该字符没有在模式串中出现则直接跳过,即移动位数 = 模式串长度 1;
2、否则,其移动位数 = 模式串长度 - 该字符最右出现的位置(以0开始) = 模式串中该字符最右出现的位置到尾部的距离 1。
代码:
#include#include <string> #include #include #include using namespace std; int main(){ string source = "hello world,hello china,hello beijing"; string part = "beijing"; int index = 0;//主要用来记录每一次的匹配位置 int i = 0;//每一次新的循环起始位置 int j,next;//j用来记录子串的遍历位置,next记录下一个起始位置 while(i < source.length()) { cout<<"begin,index: "<" ,char: "<
运行结果:
begin,index: 0 ,char: h begin,index: 8 ,char: r begin,index: 16 ,char: o begin,index: 24 ,char: h begin,index: 30 ,char: b yes,begin index is 30
分析:
第一次遍历,h开始:
hello world,hello china,hello beijing ^ beijing h!=b
hello world,hello china,hello beijing
^ ^next在这里 beijing # 由于next没有出现在子串里面,从next下一个的位置,也就是r开始第二轮遍历
hello world,hello china,hello beijing ^ ^下一轮遍历的位置 beijing
第二次遍历,r开始:
hello world,hello china,hello beijing ^ ^next beijing r!=b
第三次遍历,o开始:
hello world,hello china,hello beijing ^ ^next beijing o!=b
第四次遍历,h开始:
hello world,hello china,hello beijing ^ ^next beijing h!=b
next是e,此时,e在子串 "beijing" 里面能查到,所以下一次应该移动 "eijing" 这部分的长度
第五次遍历,b开始:
hello world,hello china,hello beijing ^ beijing b==b
e==e
j==j
i==i
n==n
g==g
结束,能够匹配到
算法的时间复杂度:o(nm)
由于 sunday 算法的偏移量比较大,较 kmp 算法来讲更容易实现且速度较快