CSC 645 - Compiler Construction

Dr. R. M. Siegfried

Assignment #5 - Creating an SLR(1) State Machine and Parse Table

Due Monday, April 17, 2023

Given the grammar below, crate the state machine and SLR(1) parse table:


                        M ::= a P | P

                        P ::= P b R | c R

                        R ::= b | c

[Back to the Assignments Index]