InterviewSolution
Saved Bookmarks
| 1. |
Algo to compute postfix notations of a given equation |
|
Answer» Evaluation rule of a Postfix Expression states:While reading the expression from left to RIGHT, push the element in the stack if it is an operand.Pop the two OPERANDS from the stack, if the element is an operator and then EVALUATE it.Push BACK the result of the evaluation. REPEAT it till the end of the expression... |
|