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

https://github.com/senior-sigan/reverse_polish_calc_cpp

OOP-style Reverse Polish Calculator in C++ I did during twitch stream
https://github.com/senior-sigan/reverse_polish_calc_cpp

calculator cpp object-oriented-programming reverse-polish-notation

Last synced: about 1 year ago
JSON representation

OOP-style Reverse Polish Calculator in C++ I did during twitch stream

Awesome Lists containing this project

README

          

# Reverse polish calculator

- [x] Calculator.eval
- [x] Tokenizer
- [x] Parser (convert token to smth)
- [x] operators
- [x] stack

## Example

`3 2 1 + * 4 -` == `(2+1)*3-4`