HOME

TheInfoList



OR:

In
computer science Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to Applied science, practical discipli ...
, a left corner parser is a type of
chart parser In computer science, a chart parser is a type of parser suitable for ambiguous grammars (including grammars of natural languages). It uses the dynamic programming approach—partial hypothesized results are stored in a structure called a chart and ...
used for parsing
context-free grammars In formal language theory, a context-free grammar (CFG) is a formal grammar whose production rules are of the form :A\ \to\ \alpha with A a ''single'' nonterminal symbol, and \alpha a string of terminals and/or nonterminals (\alpha can be empt ...
. It combines the top-down and bottom-up approaches of parsing. The name derives from the use of the left corner of the grammar's production rules. An early description of a left corner parser is "A Syntax-Oriented Translator" by Peter Zilahy Ingerman.


References

* ;Specific Parsing algorithms {{comp-sci-stub