https://github.com/63rabbits/calcexpressionbystack
Calculate the expression using reverse polish notation and stack.
https://github.com/63rabbits/calcexpressionbystack
reverse-polish-calculator reverse-polish-notation stack
Last synced: 3 months ago
JSON representation
Calculate the expression using reverse polish notation and stack.
- Host: GitHub
- URL: https://github.com/63rabbits/calcexpressionbystack
- Owner: 63rabbits
- License: mit
- Created: 2019-04-10T06:40:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-19T06:26:10.000Z (about 4 years ago)
- Last Synced: 2025-01-13T08:46:06.252Z (5 months ago)
- Topics: reverse-polish-calculator, reverse-polish-notation, stack
- Language: C
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CalcExpressionByStack
Calculate the expression using [Reverse Polish Notation](https://github.com/63rabbits/ReversePolishNotation) and [Stack](https://github.com/63rabbits/Stack).
Note: The correctness of the espression is not confirmed.式(文字列)を計算し答えを出力します。
このコードは、式(文字列)を逆ポーランド記法に変換し、スタックを使って評価(計算)を行います。
注意:式の正しさは確認しません。