0 0 votes why top down parser uses left most derivation? is it mandatory or we can change it by modifying the algo? Compiler Design compiler-design parsing descriptive + – bunty choudhary 715 views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
1 1 vote You can start from left (top down) or from right.From right it will be reverse of rightmost derivation,which is bottom up parser. If we can change the algorithm , maybe its starts from middle (say).The complexity of code will increase. Angkit answered Feb 10, 2018 Angkit comment Share Follow 0 reply Please log in or register to add a comment.