/Infix-to-Postfix-Evaluator

This code changes and Infix to Postfix and evaluates the postfix expression

Primary LanguageJava

Infix-to-Postfix-Evaluator

This code changes and Infix to Postfix and evaluates the postfix expression.

Infix is a normal math expression like 1+3X8, while Postfix changes it to 138X+. In this code I have used Stack implementation to change Infix to Postfix and calculate the Postfix expression.