Javatpoint Logo
Javatpoint Logo

Postfix Evaluation in C

Introduction:

Postfix evaluation is an important concept in computer science that allows us to perform arithmetic operations on postfix expressions. In this article, we will discuss postfix evaluation in the context of C programming language. We will start with a brief introduction to postfix notation, followed by an explanation of postfix evaluation algorithm. We will also provide an example that demonstrates postfix evaluation.

Introduction to Postfix Notation:

Postfix notation is also known as reverse polish notation. It is a mathematical notation in which operators come after their operands. For example, the infix expression 3 + 4 can be written in postfix notation as 3 4 +. Similarly, the infix expression (2 + 3) * 4 can be written in postfix notation as 2 3 + 4 *. Postfix notation has several advantages over infix notation. It eliminates the need for parentheses and makes parsing and evaluation of expressions easier.

Postfix Evaluation Algorithm

Postfix evaluation algorithm is a simple algorithm that allows us to evaluate postfix expressions. The algorithm uses a stack to keep track of operands and performs arithmetic operations when an operator is encountered. The algorithm can be summarized in the following steps:

  1. First of all, it will Create an empty stack.
  2. After that, it Scan the expression from left to right.
  3. If an operand is encountered, it push it onto the stack.
  4. If an operator is encountered, pop the top two operands from the stack, perform the operation, and push the result back onto the stack.
  5. After that, it Continue scanning the expression until all tokens have been processed.
  6. When the expression has been fully scanned, the result will be the top element of the stack.

Example:

Let's consider the expression "5 6 7 + * 8 -". We will evaluate this expression using the postfix evaluation algorithm.

  1. Start scanning the expression from left to right.
  2. Push operand 5 onto the stack.
  3. Push operand 6 onto the stack.
  4. Push operand 7 onto the stack.
  5. Pop operands 7 and 6 from the stack, perform addition, and push the result (13) back onto the stack.
  6. Pop operands 13 and 5 from the stack, perform multiplication, and push the result (65) back onto the stack.
  7. Push operand 8 onto the stack.
  8. Pop operands 8 and 65 from the stack, perform subtraction, and push the result (57) back onto the stack.
  9. The final result is 57.

Implementation in C:

To implement postfix evaluation in C, we need to use a stack. We can use an array to implement the stack. We also need a top variable to keep track of the top element of the stack.

Complete C program for postfix evaluation is given below:

Output:

The output of the above program will be:
Result: 57

Explanation:

In the above program, we have defined the push and pop functions to implement the stack. We have also defined the is_operator function to check whether a character is an operator or not. The evaluate function implements the postfix evaluation algorithm.

In the main function, we have defined the expression "5 6 7 + * 8 -". We pass this expression to the evaluate function, which returns the result of the expression. Finally, we print the result.

Conclusion:

Postfix evaluation is a simple and efficient way to evaluate arithmetic expressions. It can be easily implemented using stacks. In this article, we have discussed how to implement postfix evaluation in C using stacks. We have also provided a complete C program to implement postfix evaluation.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA