×

Program to convert infix to postfix expression in C++

Parentheses are frequently employed in mathematical formulas to make their interpretation easier to understand. However, with computers, parenthesis in an expression might lengthen the time it takes to find a solution. Various notations for describing operators and operands in an expression have been proposed to reduce computer complexity.

Let us look at a few of those notations in depth in this article, notably infix and postfix notation, as well as an example of each. Along with c++, we'll dive deep into the mechanism for converting infix to postfix notation. So, let's get this party started!

Defining Infix Notation :

Infix notation refers to the placement of the operator between its operands. It's not necessary for the operand to be a constant or a variable, it might be an expression.

Example : (p + q) * (r + s)

Three operators are used in the above phrase. The first plus operator's operands are p and q, whereas the second plus operator's operands are r and s. The outcome of these operations must be evaluated using a set of rules. Finally, after applying the addition operator to (p + q) and (r + s), the multiplication operations will be used to arrive at the final result.

Syntax :

<operator> <operator> <operator>

Remember that if an expression has just one operator, we do not need to evaluate it according to any rules. If the phrase seems to have more than only one set of operators, you may use the table below to determine the operator's priority and assess the final result.

OperatorsSymbols
Addition, Subtraction+, -
Multiplication, Division*, /
Exponents^
Parenthesis( ), { }, [ ]

Table for operators and symbols

Defining Postfix Notations :

Postfix expressions, also known as reverse polish notation, are expressions wherein the operator is written after the operands.

Example : the infix phrase (p + q) may be expressed as pq+ in postfix notation.

An arithmetic expression with operators executed from left to right is known as a postfix expression. Unlike infix expressions, postfix expressions do not require the use of parentheses. Furthermore, no operator precedence or associativity rules are required, removing the requirement for programmers to learn a set of rules to aid in determining the sequence in which operations will be done.

Postfix notation algorithm :

  1. Expression is scanned from the left side to right.
  2. Push the operand into the stack if it is detected when scanning the expression from left to right.
  3. If the operator is detected, pop the operand off the stack and conduct the computation.
  4. Repeat the process, retaining the final value in the stack.

Conversion of Infix to Postfix expression using the Stack Data Structure :

The ideal way for transforming an infix expression to a postfix expression is to use the stack data structure. It retains operators until both operands are processed, then flips the sequence of operators in the postfix expression to mimic the operation order.

  1. Begin by scanning the expressions from the left to the right.
  2. If the scanned character is an operand, print it.
  3. Else
    1. If the scanned operator's precedence is greater than the precedence of the stack's operator(or the stack is empty or has'('), then the stack's push operator is used.
    1. Otherwise, pop all operators with a higher or equal priority than the scanned operator. Push this scanning operator once you've popped them. (If a parenthesis appears during popping, halt and place the scanned operator on the stack.)
  4. Push the scanned character to the stack if it is a '('.
  5. If the scanned character is a ')', pop the stack and output that till another '(' appears, then discard both parentheses.
  6. Repeat steps 2–6 until the whole infix, i.e. all characters, has been scanned.
  7. Output for printing
  8. Continue to pop and print until the stack is not empty.

With the help of the example below, we can learn how to convert infix to postfix notation using stack.

Example :

A + B - C*D + (E^F) * M/K/L * J + G is the infix expression

Let's try out the above infix expression and see what the postfix expression is.

From left to right, the above text is parsed. The components in the stack as well as the appropriate postfix expression up to that point are displayed in the table below for each token:

StepsElementStack contentsPostfix Expression
1AA
2++
3B+A B
4--A B +
5C-A B + C
6*-*A B + C
7D-*A B + C D
8++A B + C D * -
9(+ (A B + C D * -
10E+ ( ^A B + C D * - E
11^+ ( ^A B + C D * - E
12F+ ( ^A B + C D * - E F
13)+A B + C D * - E F ^
14*+ *A B + C D* - E F ^
15M+ *A B + C D* - E F ^ M
16/+ /A B + C D* - E F ^ M *
17K+ /A B + C D* - E F ^M * K
18/+ /A B + C D* - E F ^M * K /
19L+ /A B + C D* - E F ^ M * K / L
20*+ *A B + C D* - E F ^M * K / L /
21J+ *A B + C D* - E F ^M * K / L / J
22++A B + C D* - E F ^M * K / L / J * +
23G+A B + C D* - E F ^M * K / L / J * + G
24A B + C D* - E F ^M * K / L / J * + G+

Explanation :

As we have an operand (A) at step 1, we append it to our postfix operation. Then we come across an operator (+) and make sure our stack is empty. The operator is pushed into our stack. Then we come across another operand (L), which we attach to our postfix operation. Our postfix expression now contains AB, and our stack now contains + after step 3. The very next element is (-), and we double-check that the top of the stack includes +, which has the same priority as (-). As a result, we add (+) to our phrase, which now appears like AB+. Because the stack is empty, (-) is placed into it. This process is repeated until the very last element of our infix expression is reached. Refer to the rules for conversion outlined in the preceding section to understand why an element is added to the postfix expression or the stack, or popped off of the stack.

Implementation :

#include<bits/stdc++.h>
using namespace std;


// Defining a new Func to return precedence of operators
int precd(char chr) {
	if (chr == '^')
		return 3;
	else if (chr == '/' || chr == '*')
		return 2;
	else if (chr == '+' || chr == '-')
		return 1;
	else
		return -1;
}


// Defining a Func for conversion of infix expression to postfix expression


string infixToPostfix(string strg) {


	stack<char> str; 


	string answr = "";


	for (int i = 0; i < strg.length(); i++) {
		char chr = strg[i];


// If the current character is added to the answr string.
 if it is an operand


		if ((chr >= 'a' && chr <= 'z') || (chr >= 'A' && chr <= 'Z') || (chr >= '0' && chr <= '9'))
			answr += chr;   
// Appending the current character of string answr
// push it to the stack, If the current character of string is an '(',.
		else if (chr == '(')
			str.push('(');




// Append the top character of stack in our answer string, If the current character of string is an ')',


// and keep on popping the top character from the stack until an '(' is encountered.
		else if (chr == ')') {
			while (str.top() != '(')
			{
				answr += str.top();    
// Appending the top character of stack in the answer
				str.pop();
			}
			str.pop();
		}


//If an operator is done being scanned
		else {
			while (!str.empty() && precd(strg[i]) <= precd(str.top())) {
				ans += str.top();
				str.pop();
			}
			str.push(chr);             
// Pushing the current character of the string in the stack
		}
	}


// Popping all the remaining elements from the stack
	while (!str.empty()) {
		answr += str.top();
		str.pop();
	}


	return answr;
}


int main() {
	string strg;
	cin >> strg;
	cout << infixToPostfix(strg);
	return 0;
}

Output :

u*v+(w-x)+y
uv*wx-+y+

Time Complexity :

The above approach to convert infix to postfix notation has a time complexity of O(n), where n is the length of the infix statement. Similarly, the conversion has an O(n) space complexity since the stack data structure reGuires the same amount of space to execute the solution.

Why is the expression needed to be represented as a postfix?

  • Humans can understand and solve infix expressions because the order of operators is readily distinct, but the compiler does not have an integrated order of operators.
  • As a result, to solve an Infix Expression, the compiler must scan the expression numerous times in resolving the sub-expressions in an ordered manner, which is inefficient.
  • Infix expressions are changed to Postfix expressions before being evaluated to avoid this traversal.

Postfix expression’s advantages over infix expression :

  • Any formula can be represented without parenthesis in postfix.
  • It comes in handy when assessing formulae on machines that have stacks.
  • Priority is given to infix operators.

Conclusion

Infix expressions are how we generally solve problems as humans. Computers, on the other hand, need a stack to resolve expressions. It is simple for computers to answer eGuations using prefix and postfix notation without taking into account the operator's precedence. We looked at infix and postfix notation in depth in this article, as well as the simplest way to convert infix to postfix notation using the stack data structure. To enable your programming straightforward and efficient, it is strongly advised that you properly comprehend this problem.


Related Topics

C++ Keywords

In this article, we will discuss keywords in C++ with their several features and functions. What are Keywords in C++? In C++, a keyword is a reserved word that has a predefined...

4 minutes read.

Difference between C and C++

What do you mean by C? C is a machine-independent structure or procedural oriented computer language that is widely utilized in a variety of applications. C is a fundamental programming language...

4 minutes read.

Ways to Copy a Vector in C++

Vectors in C++ are the same as arrays, along with additional outstanding features than them, like array lists in Java programming language. In Vectors, the size constraint is eliminated, which...

5 minutes read.

Find the Size of Array in C/C++ without using sizeof() function

We know that arrays in C/C++ are the most essential data structures as they have the ability to hold the data in a continuous manner line where the address of...

3 minutes read.

C++ Structs

We frequently encounter scenarios in which we must store a bunch of data, whether of comparable or dissimilar data kinds. Arrays are used to hold a group of data of...

6 minutes read.

Decimal to Octal in C++

We must create a software that converts a decimal number into an equal octal number given a decimal number as input i.e. convert a number having a base value of...

3 minutes read.

wcscpy(), wcslen(), wcscmp() Functions in C++

There are many built-in functions in C++ programming language which differentiate it from C programming language in most hardware-coded languages. We will now closely look into the applications of three...

4 minutes read.

How to concatenate two strings in C++

In the C++ programming language, the concatenation of two or even more strings is covered in this section. The term "string concatenation" refers to a collection of characters that join two...

4 minutes read.

C++ find missing in the second array

Given two arrays A and B of sizes n and m. Find the elements from array A that are not present in array B. Example Input : a[] = {1, 2, 3, 5,...

3 minutes read.

Fast Input and Output in C++

In competitive programming, it's critical to read input as quickly as possible in order to save time. "Warning: Big I / O data, be aware of certain languages (but most...

3 minutes read.

C++ vardiac() function

In the C++ programming language, the flexibility feature is provided by the variadic function. To understand more about flexibility, let's see the following syntax. Syntax: If we have to add two numbers,...

3 minutes read.

Input Iterators in C++

What are input iterators? Input iterators are used in sequence for carrying out input operations where each value is read-only. It is pointed by the iterator and further incremented. All the iterators...

4 minutes read.

Bit Manipulation in C++

The high-level language in which we communicate is not understood by the computer. As a result, there existed a standard mechanism for understanding any instruction sent to the computer. At...

5 minutes read.

Type difference of Character literals in C VS C++

Character literals in C: In C, a character literal is represented by a single character enclosed in single quotes, such as 'a' or 'b'. It is of type int. This means...

5 minutes read.

Boost split in C++ library

Boost::split in C++ library Boost offers strong tools for adding mature, well-tested libraries to the C++ standard library. The boost: split function, which is a component of the Boost string algorithm...

2 minutes read.

C++ Memory Management

Memory management is a method of controlling computer memory and allocating memory space to applications to increase overall system performance. What is the purpose of memory management? Because the array contains homogeneous...

4 minutes read.

RTTI (Run-Time Type Information) in C++

In C++, RTTI or Run-Time Type Information reveals information about the data type of an object at runtime and only works with classes that have at least one virtual function....

3 minutes read.

Binary Operator Overloading in C++

The Binary Operator Overloading in the C++ programming language will be covered in this part. An operator which comprises two operands to execute a mathematical operation is termed the Binary...

6 minutes read.

Pointers in C++

Pointers are a powerful feature in the C++ programming language, allowing developers to directly manipulate memory addresses and create more efficient and dynamic programs. However, pointers can also source various...

3 minutes read.

C ++ Program: Alphabet Triangle and Number Triangle

Alphabet Triangle and Number Triangle An alphabet triangle is a triangle that typically looks like a pyramid or other triangles like an isosceles triangle, a right-angled triangle consisting of similar or...

4 minutes read.