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
- Host: GitHub
- URL: https://github.com/senior-sigan/reverse_polish_calc_cpp
- Owner: senior-sigan
- License: mit
- Created: 2020-03-21T08:18:33.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-22T10:23:01.000Z (about 6 years ago)
- Last Synced: 2025-03-29T08:32:55.881Z (about 1 year ago)
- Topics: calculator, cpp, object-oriented-programming, reverse-polish-notation
- Language: C++
- Homepage: https://youtu.be/3aMpifryO1A
- Size: 9.77 KB
- Stars: 4
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`