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.
- Host: GitHub
- URL: https://github.com/isaaczhang4/mathematical-expression-calculator
- Owner: IsaacZhang4
- License: mit
- Created: 2025-02-01T18:56:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-01T19:39:30.000Z (over 1 year ago)
- Last Synced: 2025-10-25T16:37:47.237Z (9 months ago)
- Topics: calculator, data-structures, parsing, python, shunting-yard-algorithm
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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