10.4. CYK Parsing¶
10.4.1. CYK Parsing¶
Invented by J. Cocke, D.H. Younger, and T. Kasami
Requires |w|3 steps to parse string w.
Dynamic Programming remembers the answer to small subproblems so that it won’t have to solve them again.
For CYK Parsing, the grammar must be in Chomsky Normal Form (CNF) first.
10.4.1.1. CYK Parsing Algorithm¶
Note
A∈Vii if and only if there is what kind of production?
Answer: A→ai
10.4.1.2. Algorithm¶
Compute V11,V22,V33,…,Vnn
Compute V12,V23,V34,…,Vn−1n
Compute V13,V24,V35,…,Vn−2n
…
Last step is? Compute V1n
How do we know if it worked? If the last step is S
Example 10.4.1
Build the CYK Parse table: