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]