所以我一直在阅读维基百科和许多 powerpoints/pdf 中的CYK 算法。
在维基百科中,有一部分我不是 100% 想要说的。你们能帮我分解一下吗?
let the input be a string S consisting of n characters: a1 ... an.
let the grammar contain r nonterminal symbols R1 ... Rr.
This grammar contains the subset Rs which is the set of start symbols.
let P[n,n,r] be an array of booleans. Initialize all elements of P to false.
for each i = 1 to n
for each unit production Rj -> ai
set P[i,1,j] = true
for each i = 2 to n -- Length of span
for each j = 1 to n-i+1 -- Start of span
for each k = 1 to i-1 -- Partition of span
for each production RA -> RB RC
if P[j,k,B] and P[j+k,i-k,C] then set P[j,i,A] = true
if any of P[1,n,x] is true (x is iterated over the set s, where s are all the indices for Rs) then S is member of language
else
S is not member of language
真正让我困惑的部分是“如果 P[1,n,x] 中的任何一个为真(x 在集合 s 上迭代,其中 s 是 Rs 的所有索引),那么 S 是语言的成员,否则 S 不是成员语言"
如果它是真的,它是说存在的任何 n 和 x,那么它是一个成员吗?还是说字符串长度 n 和 x 如果它是真的那么它是一个成员?还是完全不同的东西?
X究竟是什么?
编辑:
谢谢大家,我确实学会了怎么做。希望我能将您的两个答案都作为选定的答案。