karprabin.h
来自「多种字符串匹配算法 多种字符串匹配算法」· C头文件 代码 · 共 21 行
H
21 行
// KarpRabin.h: interface for the KarpRabin class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(_KARPRABIN_H__)
#define _KARPRABIN_H__
#include "MatchingString.h"
class KarpRabin : public MatchingString
{
public:
KarpRabin();
virtual ~KarpRabin();
static void test();
void search();//char *x, int m, char *y, int n
};
#endif // !defined(_KARPRABIN_H__)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?