确定性有限自动机的仿真 这是Covid-19锁定期间无聊和好奇的产物。 这可以模拟任何确定性有限自动机,我也想模拟NFA,因此,如果您有兴趣,请随时贡献! 到目前为止已实现的语言: Python JavaScript C ++ 走 Julia(包括NFA评估员) 球拍 Haskell(包括NFA评估员) 尼姆 Java 锈 这是一个DFA的python示例,该示例接受不超过3个a: #initialize the DFA with its alphabet dfa = DFA ([ 'a' , 'b' ]) #add states to the DFA dfa . add_st