• Home
  • About
    • WilliamQiufeng photo

      WilliamQiufeng

      Welcome!

    • Learn More
    • Email
    • Github
  • Posts
    • All Posts
    • All Tags
  • Minecraft Server

LR Parser

10 Mar 2019

Reading time ~1 minute

LR Parser

首先,LR Parser的实现需要一个Action Table和Goto Table。这两个表每个的行数都代表一个状态

示例:

假设有以下语法:

(1) S -> AA

(2) A -> aA

(3) A -> b

Create the parse table

st=>start: Start from the root node


parsernote Share Tweet +1