up vote 1 down vote favorite
1
share [g+] share [fb]

I'm trying to build a parser for the following grammar (dragon book ex. 4.4.1 pg. 231) S->0S1|01

So first I left factored the grammar (eliminate ambiguity for deciding which rule to choose) and the result: S->0S'
S'->0S|1

And constructing the parsing table yielded (apologies for the formatting the table html markup was removed for some reason: Jeff?):

------------------------------
   | 0     | 1      | $      |
------------------------------
S  | S->0S'|        |        |
------------------------------
S' | S'->S1| S'->1  |        |
------------------------------


My Question is: is it ok not to have any entries for the $ (end of the input) symbol, and how does parsing is done by the predictive parser in that case.

link|improve this question

47% accept rate
feedback

1 Answer

YES, because S and S'do not accept the empty symbol.

consider:

S->0S' 
S'->0S|1
S-> empty

your table will be:

---------------------------------
   | 0     | 1      | $         |
---------------------------------
S  | S->0S'|        | S-> empty |
---------------------------------
S' | S'->S1| S'->1  |           |
---------------------------------

You can watch this video: http://www.youtube.com/watch?v=E4to0HuZh3Q

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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