Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.