Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/17xr/evaluatearithmeticexpression
A simple algorithm to evaluate an arithmetic expression
https://github.com/17xr/evaluatearithmeticexpression
algorithm cpp cpp-library cpp23 cpp23-library djikstra shunting-yard shunting-yard-algorithm
Last synced: about 1 month ago
JSON representation
A simple algorithm to evaluate an arithmetic expression
- Host: GitHub
- URL: https://github.com/17xr/evaluatearithmeticexpression
- Owner: 17xr
- License: mit
- Created: 2024-08-09T00:58:28.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-09T01:05:09.000Z (6 months ago)
- Last Synced: 2024-08-09T02:27:15.107Z (6 months ago)
- Topics: algorithm, cpp, cpp-library, cpp23, cpp23-library, djikstra, shunting-yard, shunting-yard-algorithm
- Language: C++
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Evaluate an arithmetic expression
- The header provided is a simple C++ implementation of the [Shunting Yard algorithm](https://en.wikipedia.org/wiki/Shunting_yard_algorithm), which is widely used to evaluate arithmetic expressions.
- This project was a solution for a university homework assignment.