vote up 0 vote down star

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?

flag
You forgot the homework tag, and why does it have to be done in java? – James Black Nov 2 at 2:08
What do you mean by "the First of E"?! – AraK Nov 2 at 2:13
1  
First(E) is the set of terminals that could be present at the start of E. These are the terminals you use for state transitions since you'll always hit one of them. – John Kugelman Nov 2 at 2:20
Indeed. Fixed the wording to make this clearer. – Johannes Schaub - litb Nov 2 at 2:21

3 Answers

vote up -1 vote down

Fist thank you for answer my question
My friend for me answer that :
E-> XYE-> xYE. E-> XYE-> XyE ,E-> XYE-> XYXYE->XyXYE then : First(X)=y, First(Y)=x=>First(E)=y. But i'm not find to right.
i thing that :
E->e then add e to first(E)
X->x, then add x to first(E),
because epsilon number not in First(X) then end up
then First(E)={e,x}. but i'm not sure it right.

link|flag
vote up 0 vote down

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

Set a set P to empty.
Set a set F to empty.
Repeat until S is empty 
  Choose element of S, and call it R
  If R is in P, remove R from S
  Elsif R is of the form  A -> b ... 
    then { add b to F,
           add R to P,
           remove R from S}
  Else (R is the form A -> B ...)
     then  { place all rules of form B -> ... into S
             remove R from S}
End

WHen the loop terminates, F contains the tokens which are the First(F).

This does not take into account empty productions.

link|flag
vote up 2 vote down

Well, assuming that you're starting with E, then either the first terminal is x via the EXYE production (since X always produces x) or it is e via the E→e production. So First(E) = {x,e}.

That seems pretty straightforward...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.