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

How to eliminate left recursion for the following grammar?

E := EE+|EE-|id

Using the common procedure:

A := Aa|b

translates to:

A := b|A'
A' := ϵ| Aa

Applying this to the original grammar we get:

A = E, a = (E+|E-) and b = id

Therefore:

E := id|E'
E' := ϵ|E(E+|E-)

But this grammar seems incorrect because

ϵE+ -> ϵ id +

would be valid but that is an incorrect postfix expression.

link|improve this question

74% accept rate
You should perhaps mention that e is really ϵ. Fooled me, at any rate. – Konrad Rudolph Oct 25 '09 at 13:43
You've got a problem in your "translates to" definition: you've introduced an undefined term 'e'. You can probably do something with regrouping the original as 'E := (EE(+|-))|id'. Your final comment 'that is an incorrect postfix expression' is somewhat sweeping; why is 'e id +' incorrect? It looks like 'push e; push id; evaluate +' which is usually OK. – Jonathan Leffler Oct 25 '09 at 13:44
@Konrad: ah - 'e' is empty?...that makes a difference. – Jonathan Leffler Oct 25 '09 at 13:47
Wasn't sure how to input epsilon. :) – Ramin Oct 25 '09 at 13:47
@Absolute0: no problem - as long as you explain the notation you have used. – Jonathan Leffler Oct 25 '09 at 13:54
feedback

1 Answer

up vote 8 down vote accepted

Your “common procedure” is cited wrong. Taking it from the Dragon Book:

A := Aα | β

becomes

A  := βA′
A′ := αA′ | ϵ

… which yields:

E  := id E′
E′ := (E + | E -) E′ | ϵ
link|improve this answer
How do you input math symbols?? – Ramin Oct 25 '09 at 13:51
Absolute0: simple trick: I use a character table. I’m on OS X which has got a tool for that. On Windows, you can use charmap.exe which is hidden in the “Accessories” main menu (must be switched to Unicode, though). – Konrad Rudolph Oct 25 '09 at 13:54
feedback

Your Answer

 
or
required, but never shown

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