Question

(a). Compute the FIRST set for the right-hand side of each rule in the following grammar....

(a). Compute the FIRST set for the right-hand side of each rule in the following grammar.

<list> → ( <element-list> )
<list> → ( )
<element-list> → <element> <element-list>
<element-list> → <element>
<element> → a
<element> → b
<element> → <list>

(b) Modify the grammar so that it can be parsed using an LL parser. Keep the modified
grammar as simple and as close to the original grammar as possible.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

<list>-> (\epsilon,a,b)

<list>-> (\epsilon)

<element-list>->(\epsilon,a,b)

<element-list>->(a.b)

<element>->first(a)=a

<element>->first(b)=b

\epsilon <list> → ( )
a <element> → a
b <element> → b

If the grammer does not contain multiple entry, then it should be LL parser.

Add a comment
Know the answer?
Add Answer to:
(a). Compute the FIRST set for the right-hand side of each rule in the following grammar....
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT