An open API service indexing awesome lists of open source software.

https://github.com/isaaczhang4/mathematical-expression-calculator

Two calculator programs, one evaluates infix expressions, the other evaluates a series of expressions which may include variables.
https://github.com/isaaczhang4/mathematical-expression-calculator

calculator data-structures parsing python shunting-yard-algorithm

Last synced: 27 days ago
JSON representation

Two calculator programs, one evaluates infix expressions, the other evaluates a series of expressions which may include variables.

Awesome Lists containing this project

README

          

# Infix-Expression-Calculator
Includes two seperate calculator programs...
Calculator: Takes an infix expression and evaluates it, returning the mathematical value of the expression, makes use of the shunting yard algorithm
Advanced Calculator: Takes a series of expressions which may include variables and returns the value of the final expression, makes use of the Calculator class
Notable Tools: Shunting Yard Algorithm; program implementation uses Stacks and Graph Nodes