比KMP算法更简洁,更高效的sunday算法

KMP算法中next数组计算比较难懂,sunday算法更高效,但是网络中各个版本都有bug,自己调试的无错误的权当作笔记:

//sunday算法
/*,Sunday算法其实思想跟BM算法很相似,只不过Sunday算法是从前往后匹配,
在匹配失败时关注的是文本串中参加匹配的最末位字符的下一位字符。如果该字符没有在匹配串中出现则直接跳过,
即移动步长= 匹配串长度+ 1;否则,同BM算法一样其移动步长=匹配串中最右端的该字符到末尾的距离+1。
*/
#include <iostream>
#include <string>
using namespace std;


class Solution {
public:
    int strStr(string haystack, string needle)
	{
        int len_s = haystack.size();
		int len_d = needle.size();
		int next[26] = {0};
		for(int j = 0; j < 26; ++j)
			next[j] = len_d + 1;
		for(int j = 0; j < len_d; ++j)
			next[needle[j] - 'a'] = len_d - j;
		//例如:needle = "abcedfb"
		//next = {7 1 5 4 3 2 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8}
		int pos = 0;
		while(pos < (len_s - len_d + 1))
		{
			int i = pos;
			int j;
			for(j = 0; j < len_d; ++j,++i)
			{
				if(haystack[i] != needle[j])
				{

					if(pos + len_d > len_s - 1)
						return -1;
					pos += next[haystack[pos + len_d] - 'a'];
				
					break;
				}
			}

			if(j == len_d)
				return pos;
		}
		return -1;
    }
};


int main(int argc, char **argv)
{
	string haystack = "aaaaa";
	string needle = "bba";

	cout<<Solution().strStr(haystack, needle)<<endl;

	return 0;
}



注:本版本只能比较含有小写字母的字符串,若含有其它非小写字母(例如空格,大写字母,需要更改)











  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值