I have a grammar S -> (S)S | empty
I converted it to a Chomsky Normal Form like this
S -> AS | empty
A -> LB
B -> SR
L -> (
R -> )
I'm not sure if I converted it correctly, but how do I parse this input ()() using the CNF
I have a grammar S -> (S)S | empty
I converted it to a Chomsky Normal Form like this
S -> AS | empty
A -> LB
B -> SR
L -> (
R -> )
I'm not sure if I converted it correctly, but how do I parse this input ()() using the CNF
Do the following derivation in reverse: