In
computer science
Computer science is the study of computation, information, and automation. Computer science spans Theoretical computer science, theoretical disciplines (such as algorithms, theory of computation, and information theory) to Applied science, ...
, the Cocke–Younger–Kasami algorithm (alternatively called CYK, or CKY) is a
parsing
Parsing, syntax analysis, or syntactic analysis is a process of analyzing a String (computer science), string of Symbol (formal), symbols, either in natural language, computer languages or data structures, conforming to the rules of a formal gramm ...
algorithm
In mathematics and computer science, an algorithm () is a finite sequence of Rigour#Mathematics, mathematically rigorous instructions, typically used to solve a class of specific Computational problem, problems or to perform a computation. Algo ...
for
context-free grammars published by Itiroo Sakai in 1961. The algorithm is named after some of its rediscoverers:
John Cocke, Daniel Younger,
Tadao Kasami, and
Jacob T. Schwartz. It employs
bottom-up parsing and
dynamic programming.
The standard version of CYK operates only on context-free grammars given in
Chomsky normal form (CNF). However any context-free grammar may be algorithmically transformed into a CNF grammar expressing the same language .
The importance of the CYK algorithm stems from its high efficiency in certain situations. Using
big ''O'' notation, the
worst case running time of CYK is
, where
is the length of the parsed string and
is the size of the CNF grammar
. This makes it one of the most efficient parsing algorithms in terms of worst-case
asymptotic complexity, although other algorithms exist with better average running time in many practical scenarios.
Standard form
The
dynamic programming algorithm requires the context-free grammar to be rendered into
Chomsky 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 only
production rules of the forms
and
; to allow for the empty string, one can explicitly allow
, where
is the start symbol.
Algorithm
As pseudocode
The algorithm in
pseudocode is as follows:
let the input be a string ''I'' consisting of ''n'' characters: ''a''
1 ... ''a''
''n''.
let the grammar contain ''r'' nonterminal symbols ''R''
1 ... ''R''
''r'', with start symbol ''R''
1.
let ''P''
'n'',''n'',''r''be an array of booleans. Initialize all elements of ''P'' to false.
let ''back''
'n'',''n'',''r''be an array of lists of backpointing triples. Initialize all elements of ''back'' to the empty list.
for each ''s'' = 1 to ''n''
for each unit production ''R''
''v'' → ''a''
''s''
set ''P''
'1'',''s'',''v''= true
for each ''l'' = 2 to ''n'' ''-- Length of span''
for each ''s'' = 1 to ''n''-''l''+1 ''-- Start of span''
for each ''p'' = 1 to ''l''-1 ''-- Partition of span''
for each production ''R''
''a'' → ''R''
''b'' ''R''
''c''
if ''P''
'p'',''s'',''b''and ''P''
'l''-''p'',''s''+''p'',''c''then
set ''P''
'l'',''s'',''a''= true,
append
to ''back'' 'l'',''s'',''a''
if ''P'' ,''1'',''1''is true then
''I'' is member of language
return ''back'' -- by ''retracing the steps through back, one can easily construct all possible parse trees of the string.''
else
return "not a member of language"
Probabilistic CYK (for finding the most probable parse)
Allows to recover the most probable parse given the probabilities of all productions.
let the input be a string ''I'' consisting of ''n'' characters: ''a''
1 ... ''a''
''n''.
let the grammar contain ''r'' nonterminal symbols ''R''
1 ... ''R''
''r'', with start symbol ''R''
1.
let ''P''
'n'',''n'',''r''be an array of real numbers. Initialize all elements of ''P'' to zero.
let ''back''
'n'',''n'',''r''be an array of backpointing triples.
for each ''s'' = 1 to ''n''
for each unit production ''R''
''v'' →''a''
''s''
set ''P''
'1'',''s'',''v''= Pr(''R''
''v'' →''a''
''s'')
for each ''l'' = 2 to ''n'' ''-- Length of span''
for each ''s'' = 1 to ''n''-''l''+1 ''-- Start of span''
for each ''p'' = 1 to ''l''-1 ''-- Partition of span''
for each production ''R''
''a'' → ''R''
''b'' ''R''
''c''
prob_splitting = Pr(''R''
''a'' →''R''
''b'' ''R''
''c'') * ''P''
'p'',''s'',''b''* ''P''
'l''-''p'',''s''+''p'',''c'' if prob_splitting > ''P''
'l'',''s'',''a''then
set ''P''
'l'',''s'',''a''= prob_splitting
set ''back''
'l'',''s'',''a''=
if ''P'' ,''1'',''1''> 0 then
find the parse tree by retracing through ''back''
return the parse tree
else
return "not a member of language"
As prose
In informal terms, this algorithm considers every possible substring of the input string and sets