You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PeterAlbus 16f9c3e0ef | 3 years ago | |
---|---|---|
.gitignore | 3 years ago | |
LICENSE | 3 years ago | |
README.md | 3 years ago | |
lA2.exe | 3 years ago | |
main.cpp | 3 years ago |
README.md
regex recognition
c++实现的正则表达式识别器。包含正则转换NFA和NFA转换DFA过程的展示。 需要编译环境:c++ 11 打开LA2.exe可直接使用本程序。
注意事项
- 时间原因,正则表达式不支持转移符号,也不支持 . 来表示全体字符。因此该程序不支持对 | ( ) +等字符的识别。
- 使用时若需表示空串,使用`替代,因此本程序不支持对该字符的识别