| Class | Parsing withcontext-free grammars |
|---|---|
| Data structure | String |
| Worst-caseperformance | , where:
|
Incomputer science, theCocke–Younger–Kasami algorithm (alternatively calledCYK, orCKY) is aparsingalgorithm forcontext-free grammars published by Itiroo Sakai in 1961.[1][2] The algorithm is named after some of its rediscoverers:John Cocke, Daniel Younger,Tadao Kasami, andJacob T. Schwartz. It employsbottom-up parsing anddynamic programming.
The standard version of CYK operates only on context-free grammars given inChomsky normal form (CNF). However any context-free grammar may be algorithmically transformed into a CNF grammar expressing the same language (Sipser 1997).
The importance of the CYK algorithm stems from its high efficiency in certain situations. UsingbigO notation, theworst case running time of CYK is, where is the length of the parsed string and is the size of the CNF grammar (Hopcroft & Ullman 1979, p. 140). This makes it one of the most efficient[citation needed] parsing algorithms in terms of worst-caseasymptotic complexity, although other algorithms exist with better average running time in many practical scenarios.
Thedynamic programming algorithm requires the context-free grammar to be rendered intoChomsky normal form (CNF), because it tests for possibilities to split the current sequence into two smaller sequences. Any context-free grammar that does not generate the empty string can be represented in CNF using onlyproduction rules of the forms and; to allow for the empty string, one can explicitly allow, where is the start symbol.[3]
The algorithm inpseudocode is as follows:
let the input be a stringI consisting ofn characters:a1 ...an.let the grammar containr nonterminal symbolsR1 ...Rr, with start symbolR1.letP[n,n,r] be an array of booleans. Initialize all elements ofP to false.letback[n,n,r] be an array of lists of backpointing triples. Initialize all elements ofback to the empty list.for eachs = 1 tonfor each unit productionRv →assetP[1,s,v] = truefor eachl = 2 ton-- Length of spanfor eachs = 1 ton-l+1-- Start of spanfor eachp = 1 tol-1-- Partition of spanfor each productionRa →RbRcifP[p,s,b] andP[l-p,s+p,c]thensetP[l,s,a] = true, append <p,b,c> toback[l,s,a]ifP[n,1,1] is truethenI is member of languagereturnback -- byretracing the steps through back, one can easily construct all possible parse trees of the string.elsereturn "not a member of language"
Allows to recover the most probable parse given the probabilities of all productions.
let the input be a stringI consisting ofn characters:a1 ...an.let the grammar containr nonterminal symbolsR1 ...Rr, with start symbolR1.letP[n,n,r] be an array of real numbers. Initialize all elements ofP to zero.letback[n,n,r] be an array of backpointing triples.for eachs = 1 tonfor each unit productionRv →assetP[1,s,v] = Pr(Rv →as)for eachl = 2 ton-- Length of spanfor eachs = 1 ton-l+1-- Start of spanfor eachp = 1 tol-1-- Partition of spanfor each productionRa →RbRc prob_splitting = Pr(Ra →RbRc) *P[p,s,b] *P[l-p,s+p,c]if prob_splitting >P[l,s,a]thensetP[l,s,a] = prob_splittingsetback[l,s,a] = <p,b,c>ifP[n,1,1] > 0then find the parse tree by retracing throughbackreturn the parse treeelsereturn "not a member of language"
In informal terms, this algorithm considers every possible substring of the input string and sets to be true if the substring of length starting from can be generated from the nonterminal. Once it has considered substrings of length 1, it goes on to substrings of length 2, and so on. For substrings of length 2 and greater, it considers every possible partition of the substring into two parts, and checks to see if there is some production such that matches the first part and matches the second part. If so, it records as matching the whole substring. Once this process is completed, the input string is generated by the grammar if the substring containing the entire input string is matched by the start symbol.

This is an example grammar:
Now the sentenceshe eats a fish with a fork is analyzed using the CYK algorithm. In the following table, in,i is the number of the row (starting at the bottom at 1), andj is the number of the column (starting at the left at 1).
| S | ||||||
| VP | ||||||
| S | ||||||
| VP | PP | |||||
| S | NP | NP | ||||
| NP | V, VP | Det. | N | P | Det | N |
| she | eats | a | fish | with | a | fork |
For readability, the CYK table forP is represented here as a 2-dimensional matrixM containing a set of non-terminal symbols, such thatRk is in if, and only if,.In the above example, since a start symbolS is in, the sentence can be generated by the grammar.
The above algorithm is arecognizer that will only determine if a sentence is in the language. It is simple to extend it into aparser that also constructs aparse tree, by storing parse tree nodes as elements of the array, instead of the boolean 1. The node is linked to the array elements that were used to produce it, so as to build the tree structure. Only one such node in each array element is needed if only one parse tree is to be produced. However, if all parse trees of an ambiguous sentence are to be kept, it is necessary to store in the array element a list of all the ways the corresponding node can be obtained in the parsing process. This is sometimes done with a second table B[n,n,r] of so-calledbackpointers.The end result is then a shared-forest of possible parse trees, where common trees parts are factored between the various parses. This shared forest can conveniently be read as anambiguous grammar generating only the sentence parsed, but with the same ambiguity as the original grammar, and the same parse trees up to a very simple renaming of non-terminals, as shown byLang (1994).
As pointed out byLange & Leiß (2009), the drawback of all known transformations into Chomsky normal form is that they can lead to an undesirable bloat in grammar size. The size of a grammar is the sum of the sizes of its production rules, where the size of a rule is one plus the length of its right-hand side. Using to denote the size of the original grammar, the size blow-up in the worst case may range from to, depending on the transformation algorithm used. For the use in teaching, Lange and Leiß propose a slight generalization of the CYK algorithm, "without compromising efficiency of the algorithm, clarity of its presentation, or simplicity of proofs" (Lange & Leiß 2009).
It is also possible to extend the CYK algorithm to parse strings usingweighted andstochastic context-free grammars. Weights (probabilities) are then stored in the table P instead of booleans, so P[i,j,A] will contain the minimum weight (maximum probability) that the substring from i to j can be derived from A. Further extensions of the algorithm allow all parses of a string to be enumerated from lowest to highest weight (highest to lowest probability).
When the probabilistic CYK algorithm is applied to a long string, the splitting probability can become very small due to multiplying many probabilities together. This can be dealt with by summing log-probability instead of multiplying probabilities.
Theworst case running time of CYK is, wheren is the length of the parsed string and |G| is the size of the CNF grammarG. This makes it one of the most efficient algorithms for recognizing general context-free languages in practice.Valiant (1975) gave an extension of the CYK algorithm. His algorithm computes the same parsing tableas the CYK algorithm; yet he showed thatalgorithms for efficient multiplication ofmatrices with 0-1-entries can be utilized for performing this computation.
Using theCoppersmith–Winograd algorithm for multiplying these matrices, this gives an asymptotic worst-case running time of. However, the constant term hidden by theBig O Notation is so large that the Coppersmith–Winograd algorithm is only worthwhile for matrices that are too large to handle on present-day computers (Knuth 1997), and this approach requires subtraction and so is only suitable for recognition. The dependence on efficient matrix multiplication cannot be avoided altogether:Lee (2002) has proved that any parser for context-free grammars working in time can be effectively converted into an algorithm computing the product of-matrices with 0-1-entries in time, and this was extended by Abboud et al.[4] to apply to a constant-size grammar.