Home
Main website
Display Sidebar
Hide Ads
Recent Changes
View Source:
RPN
Edit
PageHistory
Diff
Info
LikePages
[Acronym] for __R__everse __P__olish __N__otation. The idea of putting your operators after your arguments. Arguments are "pushed" onto a stack, and an operator pop's off the required arguments, computes the result and pushes it back onto the stack. For example: 3 1 2 + * leaves 6 on the stack. Note that [RPN] doesn't require any brackets. Compare InfixNotation, PrefixNotation
2 pages link to
RPN
:
HPCalculator
PrefixNotation