⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 withdfa.h

📁 多种字符串匹配算法 多种字符串匹配算法
💻 H
字号:
// withDFA.h: interface for the withDFA class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(_WITHDFA_H__)
#define _WITHDFA_H__

#include "MatchingString.h"
#include "Graph.h"

class withDFA : public MatchingString  
{
public:
	withDFA();
	virtual ~withDFA();

	static void test();
	void search();//char *x, int m, char *y, int n

private:
	void preAut(char *x, int m, Graph* aut);
};

#endif // !defined(_WITHDFA_H__)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -