I wonder how to determine the FIRST set of E with grammar:
E -> XYE | e
X -> x
Y -> y
Can anyone give me some direction?
|
|
|||||||||||
|
|
|
Fist thank you for answer my question |
|||
|
|
|
|
Treat rules of the form A -> ...x... | ...y .... as two rules A -> ...x... and B -> ...y... Form a set S initially containing rules of form E-> .... then
WHen the loop terminates, F contains the tokens which are the First(F). This does not take into account empty productions. |
||
|
|
|
|
Well, assuming that you're starting with E, then either the first terminal is x via the E→XYE production (since X always produces x) or it is e via the E→e production. So First(E) = {x,e}. That seems pretty straightforward... |
|||
|
|