I know:
A language is said to be LL(1) if it can be generated by a LL(1) grammar. It can be shown that LL(1) grammars are
not ambiguous and
not left-recursive.
but i ran into a problem.
Why the Grammar
S-> aBDb
B -> lambda
D-> dD | lambda
why this grammar is not LL(1) nor SLR nor LALR? anyone could describe me?