
Asked in Delhivery
Infix to Postfix Conversion
You are provided with a string EXP
which represents a valid infix expression. Your task is to convert this given infix expression into a postfix expression.
Explanation:
An infix expression is of the form a op b
where the operator is placed between the operands. Conversely, a postfix expression is of the form a b op
where the operator is placed after the operands.
Input:
The first line of input contains an integer ‘T’ representing the number of test cases. Each test case contains one string ‘EXP’, a valid infix expression.
Output:
For each test case, output the corresponding postfix expression on a new line.
Example:
Input:
EXP = ‘3+4*8’
Output:
3 4 8 * +
Constraints:
1 <= T <= 10
1 <= N <= 5000
where N is the length ofEXP
- The expression contains digits, lowercase English letters, parentheses
()
, and operators+, -, *, /, ^
- Time Limit: 1 sec
Note:
You are not required to print anything. Implement the function as specified.

AnswerBot
4mo
Convert a given infix expression to postfix expression.
Use a stack to keep track of operators and operands.
Follow the rules of precedence for operators (*, / have higher precedence than +, -).
Handle p...read more
Help your peers!
Add answer anonymously...
Top Associate Software Engineer Interview Questions Asked at Delhivery
Q. Maximum Sum Path in a Binary Tree Problem Statement You are provided with a bina...read more
Q. Find First Repeated Character in a String Given a string 'STR' composed of lower...read more
Q. Detect and Remove Loop in Linked List For a given singly linked list, identify i...read more
Interview Questions Asked to Associate Software Engineer at Other Companies
Top Skill-Based Questions for Delhivery Associate Software Engineer
C++ Interview Questions and Answers
300 Questions
Data Structures Interview Questions and Answers
250 Questions
Algorithms Interview Questions and Answers
250 Questions
Java Interview Questions and Answers
250 Questions
SQL Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

