8000 GitHub - alexsky1502/reverse-polish-notation
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

alexsky1502/reverse-polish-notation

 
 

Repository files navigation

Reverse Polish Notation calculator

  1. About
  2. Examples

About

A Reverse Polish Notation (RPN) calculator implemented using stacks.

It takes a postfix expression, convert it to infix expression (RPN) and calculates the final value.

Examples

Postfix expression (conventional):

(A + B) / (C – D) * E

Translates to an infix expression (RPN):

A B + C D - / E *

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 100.0%
0