Left Corner Parser
   HOME

TheInfoList



OR:

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, ...
, 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 a ...
used for parsing
context-free grammars In formal language theory, a context-free grammar (CFG) is a formal grammar whose production rules can be applied to a nonterminal symbol regardless of its context. In particular, in a context-free grammar, each production rule is of the for ...
. 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