Talk:Left corner parser
This article has not yet been rated on Wikipedia's content assessment scale. It is of interest to the following WikiProjects: | ||||||||||||||||||
|
AFAIK, a left corner parser is not chart parser
editAFAIK, left corner parsers are not chart parsers in the sense that they would keep a chart of already-processed items like CKY-(Younger-Cocke-Kasami) or Earley-Parsers do.
IIRC, they merely keep stacks as the usual Top-Down and Bottom-Up Parsers do.
There exist different algorithms for achieving backtracking and/or look-ahead in Left Corner parsing, though.
I will expand and correct when I find time to do so -- for now, I'll leave the comment here. Please be gentle if this is wrong, this is my first time here.
92.226.109.153 (talk) 11:11, 2 November 2012 (UTC)
Update to the previous point
editAs I understand it, one would have to say that left corner parsers can use a table driven approach to achieve a sort of a look-ahead, in that it can be extended to using a (pre-calculated) table which holds information on the possible left corners of each rule. These again represent the plausible predictions in the top-down steps. It strongly seems to me that it would be wrong to categorize a left corner parser as a chart parser per se like the CKY and Earley parsers.
LC parsers were known before 1981
editI was doing research for a compiler design for class and I saw mention of them in a book before I graduated in 1981. 2607:9B00:5605:6B00:1D02:AF6A:E87B:4922 (talk) 14:12, 8 July 2024 (UTC)