Question

In: Computer Science

Implement in Python using stack operations. Postfix Calculator Post fix calculator • We use a stack...

Implement in Python using stack operations.

Postfix Calculator

Post fix calculator


• We use a stack
• When an operand is read, push it on statck
• When an operator is read i.e +, *. /, -
– Pop two from the top of the stack and apply the operator and push the result on stack
if there is one value instead of two display an error message

• Keep repeating until an equal sign, = is read; pop from the top of stack and stop.

Postfix Expression          Result

4 5 7 2 + - * = -16 ===> (5 - (7 + 2 ) )* 4 = -16

3 4 + 2  * 7 / = 2

5 7 + 6 2 -  * = 48

4 2 3 5 1 - + * + = 18 ===> (5-1 + 3 ) * 2 + 4 = 18

List as Stack

"""

File: pyStackPostfix.py

Author: JD

"""

# 5 7 + 6 2 -  * = 48

print("Postfix Calculator\n")

stack = []              # Empty stack

y = int(0)

z = int(0)

w = int(0)

while True:

   x = input("Enter a postfix expression one by one:")

   if x >= '0' and x<= '9':

      x = int(x)

      stack.append(x)      # Push on top of stack

   elif x == '+':          # Got an operator

      if len(stack) >= 2:

         y = stack.pop()   # Pop from top of stack

         z = stack.pop()

         w = y + z

         stack.append(w)   # Push result back

      else:

         print("Stack error") # Not enough operhand A + B

         break

   elif x == '-':

      if len(stack) >= 2:

         y = stack.pop()

         z = stack.pop()

         w = y - z

         stack.append(w)  

      else:

         print("Stack error")

         break

   elif x == '*':

      if len(stack) >= 2:

         y = stack.pop()

         z = stack.pop()

         w = y * z

         stack.append(w)  

      else:

         print("Stack error")

         break

   elif x == '/':

      if len(stack) >= 2:

         y = stack.pop()

         z = stack.pop()

         w = y / z

         stack.append(w)  

      else:

         print("Stack error")

         break

   elif x == '=':             # Equal operator

      if len(stack) == 1:

         z = stack.pop()      # Pop the result

         print (z)

         break

      else:

         print("Stack error")

         break

IN PYTON

Solutions

Expert Solution

You just need to change the order of opertors in operations, i.e use z - y instead of y - z. Also you can input full experssion in one line.

"""
File: pyStackPostfix.py
Author: JD
"""
# 5 7 + 6 2 -  * = 48

print("Postfix Calculator\n")

stack = []              # Empty stack
y = int(0)
z = int(0)
w = int(0)

# expression list
exp = input("Enter a postfix expression:").split()

for x in exp:
  if x >= '0' and x<= '9':
      x = int(x)
      stack.append(x)      # Push on top of stack

  elif x == '+':          # Got an operator
      if len(stack) >= 2:
        y = stack.pop()   # Pop from top of stack
        z = stack.pop()
        w = z + y
        stack.append(w)   # Push result back
      else:
        print("Stack error") # Not enough operhand A + B
        break

  elif x == '-':
      if len(stack) >= 2:
        y = stack.pop()
        z = stack.pop()
        w = z - y
        stack.append(w)  
      else:
        print("Stack error")
        break

  elif x == '*':
      if len(stack) >= 2:
        y = stack.pop()
        z = stack.pop()
        w = z * y
        stack.append(w)  
      else:
        print("Stack error")
        break

  elif x == '/':
      if len(stack) >= 2:
        y = stack.pop()
        z = stack.pop()
        w = z / y
        stack.append(w)  
      else:
        print("Stack error")
        break

  elif x == '=':             # Equal operator
      if len(stack) == 1:
        z = stack.pop()      # Pop the result
        print(z)
        break

      else:
        print("Stack error")
        break

Related Solutions

Write a code to implement a python stack class using linked list. use these operations isEmpty...
Write a code to implement a python stack class using linked list. use these operations isEmpty   • push. • pop.   • peek. • size Time and compare the performances ( this is optional but I would appreciate it)
Using STL stack class, implement in C++ a function that converts an infix expression to postfix...
Using STL stack class, implement in C++ a function that converts an infix expression to postfix expression,
Write a code to implement a python queue class using a linked list. use these operations...
Write a code to implement a python queue class using a linked list. use these operations isEmpty • enqueue. • dequeue    • size Time and compare the performances of the operations ( this is optional but I would appreciate it)
All code should be in Python 3. Implement the Stack Class, using the push, pop, str,...
All code should be in Python 3. Implement the Stack Class, using the push, pop, str, init methods, and the insurance variable 'list'.
Implement the stack class (called Stack2) using queue, meaning that the only operations that can be...
Implement the stack class (called Stack2) using queue, meaning that the only operations that can be used are the ones defined in the Queue class. class Queue: def __init__(self): self.items = [] def isEmpty(self): return self.items == [] def enqueue(self, item): self.items.insert(0, item) def dequeue(self): return self.items.pop() def size(self): return len(self.items) The codes to fill: """ 1. Stack2 class Implement stack data structure using queue """ class Stack2: def __init__(self): # Write your definition for __init__ here def isEmpty(self): #...
Using a stack, write a program that turns a simple infix arithmetic expression into a postfix...
Using a stack, write a program that turns a simple infix arithmetic expression into a postfix expression. For example, 1 + 2 * 3 becomes 2 3 * 1 +. Also, evaluate the expression to ensure the expression is correct.
Write the code for postfix expression in C++ using a linked stack that can take numbers...
Write the code for postfix expression in C++ using a linked stack that can take numbers bigger than 9 (any size the user gives) and pushes the final result onto the top of the stack
Find is the final result of evaluating the following postfix expression using a stack. Show each...
Find is the final result of evaluating the following postfix expression using a stack. Show each push and pop operation. 85 5 / 4 * 5   6 +   10    5 -   * +
Description( IN C++)!! The purpose of this challenge is to implement a stack using a Linked...
Description( IN C++)!! The purpose of this challenge is to implement a stack using a Linked List as a backing data structure Requirements Write the following structs struct Location { string name; string address; }; struct VisitNode { Location loc; VisitNode * next; }; Create a class called Stack. In this class, create a private variable VisitNode * head. This will keep track of the location of the head node. Add the following private function. This function will be used...
in C++ For this program, you are going to implement a stack using an array and...
in C++ For this program, you are going to implement a stack using an array and dynamic memory allocation. A stack is a special type of data structure that takes in values (in our case integers) one at a time and processes them in a special order. Specifically, a stack is what's called a first-in-last-out (FILO) data structure. That is to say, the first integer inserted into the stack is the last value to be processed. The last value in...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT