Answered step by step
Verified Expert Solution
Question
1 Approved Answer
(40) Context Free Grammar. (a) Write a context free grammar for arithmetic expressions which can use numbers, variables and operation + only. (b) Write a
(40) Context Free Grammar. (a) Write a context free grammar for arithmetic expressions which can use numbers, variables and operation + only. (b) Write a context free grammar for the arithmetic expressions above that captures right associativity. (c) Write a context free grammar for arithmetics expressions which can use numbers, variables and binary operations and + only. Your grammar has to capture the precedence that - must be computed before +. Your grammar should also capture the left associativity of + and -. For example 5+5-5-5+65 should be computed as 5 + (5 5 5) + (6 5). (d) Refine your grammar above to allow parenthesis ( and ). Hint. Recall the techniques on how precedence and associativity were dealt with in the class
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started