288 views
0 votes
0 votes
Can LALR have more reduce entries than SLR ?

As per my understanding, the lookaheads used in LALR are subsets of Follow sets in SLR, so reduce entries in LALR can be less than or equal to those in SLR.

Is it correct?, please verify.

Please log in or register to answer this question.

Related questions

2 votes
2 votes
0 answers
1
Na462 asked Jan 19, 2019
908 views
Which one of the following is true about LALR(1) Parser ?It can resolve SR Conflict in favor of reducedIt can resolve SR Conflict in favor of ShiftIt can resolve RR Confl...
2 votes
2 votes
1 answer
2
sripo asked Nov 10, 2018
3,258 views
Can you give an example which is not LL(1) but is CLR(1)
1 votes
1 votes
1 answer
3
srestha asked Jun 17, 2018
1,396 views
$A→ b.a , \left \{ b \right \}$ $B→ b.,\left \{ a \right \}$It is a SR conflict in LALR(1). Now how reduce state operated on $a$ for non terminal $B$(and not $b$) ?...