๐ฐ Automata (acceptor)
= a ๐ฆพ State machine representing an indicator function () over all possible words
Families
Name | Storage | Rule Type | Complexity |
---|---|---|---|
๐ Finite state automata | none | n (linear) | |
๐ Pushdown automata | stack | (cubic) | |
๐ Linear-bounded automata | finite tape length | (exponential) | |
๐ Turing Machine | infinite | undecideable |
๐ Example:
1๏ธโฃ Deterministic finite automaton that checks the validity of e.g. b โ false or 00 โ true
graph LR
q0 --"0"--> q1
q0 --"1"--> q2
q1 --"0"--> q3
q3 --> qf
q1 --"1"--> q3