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

📄 dfaminhash.cpp

📁 一个类似STL的自动机的源代码库
💻 CPP
字号:
#include <dfa.h>#include <ccopy.h>#include <stream.h>#include <tools.h>#include <iostream>#include <iterator>using namespace std;int main(int argc, char** argv){  config c(argc, argv, 1);  /*      DFA_min_hash<> dfa;  string word;  int wc;  for(wc = 0, getline(cin,word); !cin.eof(); ++wc, getline(cin,word))     dfa.insert(word.begin(), word.end());  if (c.verbose_mode) {    cerr << "word count " << wc << endl << "states " << dfa.state_count();    cerr << endl << "transitions " << dfa.trans_count() << endl;  }  DFA_stream out(cout);  if (c.state_mark)    clone(out, dfirst_markc(dfa));  else    clone(out, dfirstc(dfa));  */  return 0;}

⌨️ 快捷键说明

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