in Compiler Design
732 views
0 votes
0 votes
Give an SDD to translate infix expressions with $+$ and $\ast$ into equivalent expressions without redundant parentheses. For example, since both operators associate from the left, and $\ast$ takes precedence over  $+, ((a\ast(b+c))\ast(d))$ translates into $a\ast(b + c)\ast d$.
in Compiler Design
by
732 views

Please log in or register to answer this question.

Related questions