- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果 L1 和 L2 是语言,我们就有了一种新语言
INTERLACE(L1, L2) = {w1v1w2v2 . . . wnvn | w1w2 . . . wn ∈ L1, v1v2 . . . vn ∈ L2}.
abc ∈ L1
和
123 ∈ L2
,然后
a1b2c3 ∈ INTERLACE(L1, L2)
INTERLACE
是:
To show that the class of decidable languages is closed under operation
INTERLACE
need to show that if A and B are two decidable languages, then there is method to find ifINTERLACE
language is decidable. SupposeA
,B
decidable languages andM1
,M2
twoTM
who decide, respectively.
最佳答案
L1
和 L2
decidable ==> INTERLACE(L1, L2)
可判定的
引自 Wikipedia
:
There are two equivalent major definitions for the concept of a recursive (also decidable) language:
...
2. A recursive language is a formal language for which there exists a Turing machine that, when presented with any finite input string, halts and accepts if the string is in the language, and halts and rejects otherwise.
L1
和 L2
是可判定的,然后是算法(或图灵机)M1
和 M2
存在,所以:M1
接受所有输入 w ∈ L1
并拒绝所有输入 w ∉ L1
. M2
接受所有输入 v ∈ L2
并拒绝所有输入 v ∉ L2
. M
接受所有输入 x ∈ INTERLACE(L1, L2)
并拒绝所有输入 x ∉ INTERLACE(L1, L2)
, 如下:x1 x2 .. xn
. n
为奇数,拒绝输入,否则(n
为偶数):M1
对于输入 x1 x3 x5 .. xn-1
.如 M1
拒绝此输入,然后 M
拒绝其输入并完成,否则( M1
接受其输入): M2
对于输入 x2 x4 x6 .. xn
.如 M2
拒绝此输入,然后 M
拒绝它的输入,否则 M
接受它的输入。 M
是
INTERLACE(L1, L2)
的决策算法,因此,语言是可判定的。
L1
和
L2
recognizable ==>
INTERLACE(L1, L2)
可识别的
Wikipedia
:
There are three equivalent definitions of a recursively enumerable (also recognizable) language:
...
3. A recursively enumerable language is a formal language for which there exists a Turing machine (or other computable function) that will halt and accept when presented with any string in the language as input but may either halt and reject or loop forever when presented with a string not in the language. Contrast this to recursive languages, which require that the Turing machine halts in all cases.
L1
和 L2
是可识别的,然后是算法 R1
和 R2
存在,所以:R1
接受所有输入 w ∈ L1
并拒绝或永远循环所有输入 w ∉ L1
. R2
接受所有输入 v ∈ L2
并拒绝或永远循环所有输入 v ∉ L2
. R
接受所有输入 x ∈ INTERLACE(L1, L2)
并拒绝或永远循环所有输入 x ∉ INTERLACE(L1, L2)
:x1 x2 .. xn
. n
为奇数,拒绝输入,否则(n
为偶数):R1
对于输入 x1 x3 x5 .. xn-1
.如 R1
永远循环,然后 R
也永远循环(“自动”)。如 R1
拒绝此输入,然后 R
拒绝其输入并完成,否则(如果 R1
接受其输入):R2
对于输入 x2 x4 x6 .. xn
.如 R2
永远循环,然后 R
也永远循环。如 R2
拒绝此输入,然后 R
拒绝它的输入,否则 R
接受它的输入。 关于computation-theory - 证明该语言是否可判定和可识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43162018/
libnetfilter_queue 似乎只支持两个判断:NF_ACCEPT 和 NF_DROP。 NF_REJECT 是否有任何解决方法。 最佳答案 我想你可以使用 NF_Drop。它应该提供您正在
我是一名优秀的程序员,十分优秀!