RE
DFA
NFA
TM
TM v.2
NFA Tester
NFA code:
// // Init: [start state] // Accept: [accept states] - comma separated list // // Transitions: // [current state],[symbol],[next states] // // Symbol 'eps' corresponds to epsilon transitions // Init: q0 Accept: q3 q0,0,q0 q0,1,q0,q1 q1,0,q2 q1,1,q2 q2,0,q3 q2,1,q3
Test string:
Compile
Execute