Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 356 Bytes

README.md

File metadata and controls

6 lines (5 loc) · 356 Bytes

postfix-expression

The program reads a set of lines containing arithmetic expression from a txt file. Converts the expressions to postfix, evaluates them and then outputs the answer to the file. The postfix evaluation is performed using stack with two implemenation - LinkedList and Dynamuc Arrays. The program also checks for invalid input expressions.