BM算法模式匹配——字符串与KMP比较

下面是代码:BM是什么参考阮一峰老师的讲解  点击打开链接

#include
#include
#include
#include
#include
#include
#include
#include
#include 
#include
using namespace std;
const int MAX_SIZE=5005;


void set_ASC(int *ASC,int len,string& b,int& last)
{
    int i;
    for(i=0; i>a>>b)
    {
        printf("%d\n",bm(a,b));
        printf("%d\n",kmp(a,b));
        printf("\n");
    }
    return 0;
}


转载于:https://www.cnblogs.com/coded-ream/p/7207985.html

你可能感兴趣的:(BM算法模式匹配——字符串与KMP比较)