Bottom-Up Parsing/Example 3: SLR(1)

From Wiki**3

< Bottom-Up Parsing
Revision as of 17:14, 16 May 2011 by Root (talk | contribs) (Created page with "{{TOCright}} = Problem = S -> x A y | x B y | x A z B -> k A w S | k Initial symbol: S Terminals: { k, w, x, y, z } == Solution == category:Teaching [[category:Compil...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Problem

S -> x A y | x B y | x A z
B -> k
A w S | k

Initial symbol: S

Terminals: { k, w, x, y, z }

Solution