确定性有穷自动机
定义
确定性有穷自动机(Deterministic Finite Automaton, DFA)是一个5元组[math]\displaystyle{ (Q,\Sigma,\delta,q_0,F) }[/math],其中
- Q是一个有穷集合,称为状态集
- [math]\displaystyle{ \Sigma }[/math]是一个有穷集合,称为字母表
- [math]\displaystyle{ \delta:Q×\Sigma \rightarrow Q }[/math]是状态转移函数
- [math]\displaystyle{ q_0\in Q }[/math]是起始状态
- [math]\displaystyle{ F\subseteq Q }[/math]是接受状态集
一台确定性有穷自动机有如上五个部分组成,介绍如下:
- 它有一个状态集,表示它有的全部状态
- 它有一个输入字母表,指明所有允许的输入符号
- 它有一个根据一个输入字符从一个状态到另一个状态的规则
- 它有一个起始状态,表示处理所起始的状态
- 它有一个接受状态集,表示处理表达为接受的状态
例子
[math]\displaystyle{ \begin{align} Q=\{q_0,q_1\}\\ \Sigma=\{0,1\}\\ \delta=\begin{Bmatrix} \delta(q_0,0)=q_1\\ \delta(q_0,1)=q_0\\ \delta(q_1,0)=q_1\\ \delta(q_1,1)=q_0 \end{Bmatrix}\\ F=\{q_1\} \end{align} }[/math]
用处
主要对于输入的字符串判定是否该确定性有穷自动机所识别的语言,对此表示接受及不接受。
而如上的确定性有穷自动机是识别以0结尾的串,对于以0结尾的串[math]\displaystyle{ x \in \Sigma^* }[/math],表示接受,反之不接受。
确定性有穷自动机可以用来定义语言也可用于识别语言。
运算
假如现在有个确定性有穷自动机[math]\displaystyle{ \mathcal M_1=(Q,\Sigma,\delta,q_0,F) }[/math]
假如对于上面的确定性有穷自动机[math]\displaystyle{ \mathcal M_1 }[/math],输入字符串[math]\displaystyle{ 010 }[/math],此时从初始状态[math]\displaystyle{ q_0 }[/math]开始,读入第一个字符[math]\displaystyle{ 0 }[/math],因为[math]\displaystyle{ \delta(q_0,0)=q_1 }[/math],所以转移状态至[math]\displaystyle{ q_1 }[/math],继续读入下一个字符[math]\displaystyle{ 1 }[/math],因为[math]\displaystyle{ \delta(q_1,1)=q_0 }[/math],所以转移状态至$q_0$,继续读入下一个字符[math]\displaystyle{ 0 }[/math],因为[math]\displaystyle{ \delta(q_0,0)=1 }[/math]所以转移状态至[math]\displaystyle{ q_1 }[/math],运算结束。因为最后停在状态[math]\displaystyle{ q_1 }[/math],因为[math]\displaystyle{ q_1 \in F }[/math],所以确定性有穷自动机[math]\displaystyle{ \mathcal M_1 }[/math]接受字符串[math]\displaystyle{ 010 }[/math]。
扩展转移函数
扩展[math]\displaystyle{ \delta }[/math]到字符串,定义扩展转移函数[math]\displaystyle{ \hat{\delta}:Q×\Sigma^* \rightarrow Q }[/math]为
[math]\displaystyle{ \hat{\delta}(q,w)=\begin{cases} q &w=\varepsilon \\ \delta(\hat{\delta}(q,x),a)&w=xa \end{cases} }[/math]
其中[math]\displaystyle{ q \in Q$,$a \in \Sigma }[/math], [math]\displaystyle{ w,x \in \Sigma^* }[/math]
定理一
[math]\displaystyle{ \hat{\delta}(q,xy)=\hat{\delta}(\hat{\delta}(q,x),y) }[/math]
DFA的语言
若[math]\displaystyle{ M=(Q,\Sigma,\delta,q_0,F) }[/math]是一个确定性有穷自动机,则M接受的语言为
[math]\displaystyle{ \mathcal{L(M)}=\{w\in \Sigma^*|\hat{\delta}(q_0,w)\in F\} }[/math]
非确定性有穷自动机
定义
非确定性有穷自动机(NonDeterministic Finite Automata, NFA)是一个5元组[math]\displaystyle{ (Q,\Sigma,\delta,q_0,F) }[/math],其中
- Q是一个有穷集合,称为状态集
- [math]\displaystyle{ \Sigma }[/math]是一个有穷集合,称为字母表
- [math]\displaystyle{ \delta:Q×\Sigma \rightarrow \mathcal P(Q) }[/math]是状态转移函数[math]\displaystyle{ (\mathcal P(Q)=\{S|S\subseteq Q\}) }[/math]
- [math]\displaystyle{ q_0\in Q }[/math]是起始状态
- [math]\displaystyle{ F\subseteq Q }[/math]是接受状态集
一台非确定性有穷自动机有如上五个部分组成,介绍如下:
- 它有一个状态集,表示它有的全部状态
- 它有一个输入字母表,指明所有允许的输入符号
- 它有一个根据一个输入字符从一个状态到零个或多个状态的规则
- 它有一个起始状态,表示处理所起始的状态
- 它有一个接受状态集,表示处理表达为接受的状态性有穷自动机
例子
假如现在有个非确定性有穷自动机[math]\displaystyle{ \mathcal M_2=(Q,\Sigma,\delta,q_0,F) }[/math]
[math]\displaystyle{ \begin{align} Q=\{q_0,q_1,q_2\}\\ \Sigma=\{0,1\}\\ \delta=\begin{Bmatrix} \delta(q_0,0)=\{q_0,q_1\}\\ \delta(q_0,1)=\{q_0\}\\ \delta(q_1,0)=\varnothing\\ \delta(q_1,1)=\{q_2\}\\ \delta(q_2,0)=\varnothing\\ \delta(q_2,1)=\varnothing\\ \end{Bmatrix}\\ F=\{q_2\} \end{align} }[/math]
用处
主要对于输入的字符串判定是否该非确定性有穷自动机所识别的语言,对此表示接受及不接受
而如上的确定性有穷自动机是识别以[math]\displaystyle{ 01 }[/math]结尾的串,对于以[math]\displaystyle{ 01 }[/math]结尾的串[math]\displaystyle{ x \in \Sigma^* }[/math],表示接受,反之不接受
非确定性有穷自动机可以用来定义语言也可用于识别语言
运算
假如对于上面的确定性有穷自动机[math]\displaystyle{ \mathcal M_2 }[/math],输入字符串[math]\displaystyle{ 010 }[/math],此时从初始状态[math]\displaystyle{ q_0 }[/math]开始,读入第一个字符[math]\displaystyle{ 0 }[/math],因为[math]\displaystyle{ \lt math\gt \delta(q_0,0)=\{q_0,q_1\} }[/math],此时有[math]\displaystyle{ 2 }[/math]个转移方向:
- 转移状态至[math]\displaystyle{ q_0 }[/math],读入下一个字符1,因为[math]\displaystyle{ \delta(q_0,1)=\{q_0\} }[/math],所以转移状态至[math]\displaystyle{ q_0 }[/math],读入下一个字符0,因为[math]\displaystyle{ \delta(q_0,0)=\{q_0,q_1\} }[/math],此时有[math]\displaystyle{ 2 }[/math]个转移方向:
- 转移状态至[math]\displaystyle{ q_0 }[/math],因为[math]\displaystyle{ q_0 \notin F }[/math],所以不接受
- 转移状态至[math]\displaystyle{ q_1 }[/math],因为[math]\displaystyle{ q_1 \notin F }[/math],所以不接受
- 转移状态至[math]\displaystyle{ q_1 }[/math],读入下一个字符1,因为[math]\displaystyle{ \delta(q_1,1)=\{q_2\} }[/math],所以转移状态至[math]\displaystyle{ q_2 }[/math],读入下一个字符0,因为[math]\displaystyle{ \delta(q_2,0)=\varnothing }[/math],对于空集(就是没有规定这个状态对于这个输入的转移),我们认为此时等同于不接受
因为最后结果都是不接受,所以我们认为该非确定性有穷自动机不接受该串
如果有结果是接受,才认为该非确定性有穷自动机接受该串
扩展转移函数
扩展[math]\displaystyle{ \lt math\gt \delta }[/math]到字符串,定义扩展转移函数[math]\displaystyle{ \hat{\delta}:Q×\Sigma^* \rightarrow \mathcal P(Q) }[/math]为
[math]\displaystyle{ \hat{\delta}(q,w)=\begin{cases} \{q\} &w=\varepsilon \\ \bigcup_{p \in \hat{\delta}(q,x)}\delta(p,a)&w=xa \end{cases} }[/math]
其中[math]\displaystyle{ q \in Q }[/math],[math]\displaystyle{ a \in \Sigma }[/math], [math]\displaystyle{ w,x \in \Sigma^* }[/math]
NFA的语言
若[math]\displaystyle{ \mathcal M=(Q,\Sigma,\delta,q_0,F) }[/math]是一个非确定性有穷自动机,则[math]\displaystyle{ \mathcal M }[/math]接受的语言为
[math]\displaystyle{ \mathcal {L(M)}=\{w\in \Sigma^*|\hat{\delta}(q_0,w)\cap F\not = \varnothing\} }[/math]