For the grammar with the productions:
S → C B | x | S S
C → A S
A → a
B → b
Perform the CYK algorithm!
(For each cell: List the corresponding non-terminals separated by a whitespace.)
|
||||
|
|
|||
|
|
|
||
|
|
|
|
|
|
|
|
|
|
'a' | 'b' | 'a' | 'x' | 'b' |