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

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.

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.

式(文字列)を計算し答えを出力します。
このコードは、式(文字列)を逆ポーランド記法に変換し、スタックを使って評価(計算)を行います。
注意:式の正しさは確認しません。