Automata

Posted Trace Spaces

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Automata相关的知识,希望对你有一定的参考价值。

A deterministic finite automaton is represented formally by a 5-tuple (Q,Σ,δ,q0,F), where:
  • Q is a finite set of states.
  • Σ is a finite set of symbols, called the alphabet of the automaton.
  • δ is the transition function, that is, δ: Q × Σ → Q.
  • q0 is the start state, that is, the state of the automaton before any input has been processed, where q0∈ Q.
  • F is a set of states of Q (i.e. F?Q) called accept states.

以上是关于Automata的主要内容,如果未能解决你的问题,请参考以下文章