vote up 2 vote down star

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.

flag

You should perhaps mention that e is really ϵ. Fooled me, at any rate. – Konrad Rudolph Oct 25 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 at 13:44
@Konrad: ah - 'e' is empty?...that makes a difference. – Jonathan Leffler Oct 25 at 13:47
Wasn't sure how to input epsilon. :) – Absolute0 Oct 25 at 13:47
@Absolute0: no problem - as long as you explain the notation you have used. – Jonathan Leffler Oct 25 at 13:54

1 Answer

vote up 3 vote down check

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|flag
How do you input math symbols?? – Absolute0 Oct 25 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 at 13:54

Your Answer

Get an OpenID
or

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