CSC 645 - Compiler Construction

Dr. R. M. Siegfried

Assignment #4 - Creating an LR(0) State Machine and Parse Table

Due Monday, April 10, 2023

Given the following grammar, create the state machine and LR(0) parse table:



                        A ::= AB | B

                        B ::= dC | eC

                        C ::= f | g

[Back to the Assignments Index]