NFA 接受最后一位数字之前未出现过的语言
给出一个接受以下语言的非确定性有限自动机(NFA): 字母表 {0,1,...,9} 上的字符串集合,其中最后一个数字之前未出现过。 我在自动机理论语言和计算简介第67页练习2.3.4中遇到了这个问题
Give a non-deterministic finite automata(NFA) which accepts the following language:
The set of strings over the alphabet {0,1,...,9} such that the final digit has not appeared before.
I have encountered this problem on introduction to automata theory languages and computation page 67 Exercise 2.3.4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当字母表为 {0,1} 时,这是最简单的非平凡情况,我们可以得到一个最简单的 NFA,如下所示:
最简单的非平凡情况
因此,您还可以获得这样的 NFA:
在此处输入图片说明
When the alphabet is {0,1}, which is the simplest non-trivial situation, we can get a simplest NFA like this:
The simplest non-trivial situation
So further you can get an NFA like this:
enter image description here
获得 NFA 的一个简单方法是分别考虑这 10 种情况。考虑最后一位数字为 0 的语言中所有字符串的情况。此类字符串不包含其他 0;它们的正则表达式是 (1+2+3+4+5+6+7+8+9)*0。他们的 NFA 看起来有点像
我们可以想象另外 9 个状态为 Ax、Bx,其中 Bx 接受每个 x,并且 Ax 在除 x 之外的每个符号上循环到自身,并在符号 x 上循环到 Bx。
然后,我们可以通过引入一个新的初始状态 S 将所有这些粘合在一起,该初始状态 S 具有到 Ax 状态的空/lambda 转换。最终的 NFA 将具有:
事实上,为什么不呢复制/粘贴上面的内容然后写下整个内容?
这是该语言最简单的 NFA 或 DFA 吗?几乎可以肯定不是。但它应该有效。
An easy way to get an NFA for this is to consider each of the 10 cases separately. Consider the case of all strings in the language whose last digit is 0. Such strings contain no other 0s; a regular expression for them is (1+2+3+4+5+6+7+8+9)*0. An NFA for them looks sort of like
We can imagine 9 others with states Ax, Bx, where Bx is accepting for each x, and Ax loops to itself on every symbol besides x, and to Bx on symbol x.
We can then glue all of these together by introducing a new initial state S which has an empty/lambda transition to the Ax states. The final NFA would have:
In fact, why not copy/paste the above and just write the whole thing down?
Is this the simplest NFA or DFA for this language? Almost surely not. But it should work.