?? withdfa.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 + -