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

📄 isomorph.cpp

📁 一个类似STL的自动机的源代码库
💻 CPP
字号:
#include <astl.h>#include <dfa.h>#include <set_operation.h>#include <cursor.h>#include <tools.h>#include <ccopy.h>#include <string>#include <iostream>using namespace std;const string USAGE = "";const string DESCRIPTION = "return 0 if the DFA read from stdin is \the same as the one read from file";int main(int argc, char **argv){  config c(argc, argv, 2, "", USAGE, DESCRIPTION);    if (isomorph(clone_cursor<plain>(cin), 	       clone_cursor<plain>(c.aux_input)))    return 0;  cerr << "DFAs differ" << endl;  return 1;}

⌨️ 快捷键说明

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