vote up 6 vote down star
3

Could someone please explain to me why recursive-descent parsers can't work with a grammar containing left recursion?

flag

2 Answers

vote up 11 vote down check

consider:

A ::= A B

the equivalent code is

boolean A() {
    if (A()) {
        return B();
    }
    return false;
}

see the infinite recursion?

link|flag
vote up 5 vote down

For whoever is interested

 A ::= A B | A C | D | E

can be rewritten as:

 A ::= (D | E) (B | C)*

The general form of the transformation is: any one of the non left recursive disjuncts followed by any number of the left recursive disjuncts without the first element.

Reforming the action code is a bit trickery but I thing that can be plug-n-chug as well.

link|flag
First time I've seen that, I always saw advice to use a new non-terminal, usually called A' – Benjamin Confino May 11 at 20:14
Well some BNF based tools won't allow () groups so you end up stuck with the new rule solution. I'm kinda partial to the form I proposed because my parser generator needs to do the action transformation as well so it's a lot easier to make it work without a new rule. – BCS May 11 at 20:20

Your Answer

Get an OpenID
or

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