Question: Add this function to the PyDev module functions.py . Test it from t 0 6 . py . The function must use a single stack
Add this function to the PyDev module
functions.py Test it from
tpy
The function must use a single stack to do its work.
In a postfix expression, operators follow operands. Thus the infix expression:
is written as postfix expression:
which evaluates to
In postfix expressions as the operations are performed in the order that they appear. The expression:
is equivalent to and evaluates to
The algorithm for evaluation postfix expressions is:
Create a stack to store operands ie values
Walk through the expression string element by element:
If the element is a number, push it into the stack
When the expression is finished, the number on the top of the stack is the final answer. The stack should be empty after this number is popped.
You do not have to do any error handling on poorly written postfix expressions. A valid postfix expression has at least one number in it
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
