THIS PROJECT IS UNDER DEVELOPMENT.
infixTother is a simple app that convert infix expression to postfix/prefix expression.
Limitation? ↑
- One digit per terms
It can convert a expression that ONLY contains ONE-DIGIT terms.
For example :1+(2*3-(4/5^2)*7) is convertible.
12 +( 21 *3-(4/ 54 ^2)*7) is not convertible.
This limitation may be fixed in future. - Well-formed expressions
For example :1+(2*3-(4/5^2)*7) is well-formed.
*1+3/-3 is not well-formed.
Please avoid negative number in the begining of expression.
Downloads ↑
To Do list ↑
- KILL Limitation 1.
- Auto checking for Limitation 2.