I am looking for an unambiguous grammar for arithmetic expressions with no redundant parentheses. For example, parentheses are redundant in id+(id*id), but not in (id+id)*id.

Mahshid

link|improve this question
Reverse Polish Notation -- No redundant parenthesis :-) – pst Jan 8 '11 at 7:42
I don't believe there is a sane way to reject input which contains "redundant" parenthesis with infix notation in a CFG. – pst Jan 8 '11 at 7:45
But this question appears in some books as well as candidacy examination of penn state university! so, there should be some solution to it! – Mahshid Jan 8 '11 at 20:14
feedback

1 Answer

It depends on exactly what you mean by 'for arithmetic expressions with no redundant parentheses'. This will accept expressions with no redundant parentheses, but will also accept arbitrarily nested parentheses:

expr   ::= factor
expr   ::= factor mul_div factor

mul_div ::= '*' | '/'

factor ::= term
factor ::= term add_sub term

add_sub ::= '+' | '-'

term   ::= NUMBER
term   ::= '(' expr ')'

I'm assuming that NUMBER manages to recognize signed numbers, so there is no unary plus or minus in there. You can work out how to handle them if you need them. You can also add variables etc if you need them.

If you mean a grammar that rejects expressions that have unnecessary parentheses, then I think you are on a search for the something that is not a context-free grammar.

link|improve this answer
The point is that as you said in the last paragraph, it rejects expressions that have unnecessary parentheses, like in id+(id*id). – Mahshid Jan 8 '11 at 5:37
1  
@Mahshid: I'm pretty sure that cannot be done with a context-free grammar. Not certain, but almost certain. You might also clarify the question so that everyone knows exactly what you are after. You might simply rewrite the last sentence: For example, parentheses are redundant in id+(id*id) so the grammar should reject it, but they are not redundant in (id+id)*id so the grammar should accept it. – Jonathan Leffler Jan 8 '11 at 5:41
This is a question from chapter 4 of this book: – Mahshid Jan 8 '11 at 5:48
@Mahshid: which book? Sometimes, questions in text books don't have answers - at least when published. See Exercise 4 on page xix in Knuth 'Fundamental Algorithms' (Second Edition). – Jonathan Leffler Jan 8 '11 at 6:05
Sorry for the incomplete comment. My OS crashed. This is the book: Introduction to Automata Theory, Languages, and Computation (2nd Edition). This is question 4.5, part b. – Mahshid Jan 8 '11 at 6:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.