Click here to Skip to main content
15,868,292 members
Articles / Programming Languages / C++
Article

Expression evaluator : using RPN

Rate me:
Please Sign up or sign in to vote.
4.77/5 (28 votes)
5 Nov 20033 min read 213.4K   3.3K   63   50
An article showing how to evaluate mathematical expressions using reverse polish notation (RPN)

Introduction

This article will demonstrate how to evaluate complex mathematical expressions by converting them from infix notation to postfix notation and evaluating the expression. In the process we will be using STL's stack and string classes. When finished, the program should be able to evaluate expressions such as:

expr = "(12232+(43*43-(250/(3*8))*44)/12-311) * (5==5)"

Background

Most programming languages require that you enter expressions in infix notation that is: operators and operands are intermixed, example: "5*6-3*2*3".

The postfix notation, introduced in 1950 by the Polish logician Jan Lukasiewicz, is a method of representing an expression without using parenthesis and still conserving the precedence rules of the original expression. For example, the previous expression could have been written like: "5 6 * 3 2 * 3 * -"

Explaining the code

Here's is how to convert from an infix notation to postfix notation:

  1. Initialize an empty stack (string stack), prepare input infix expression and clear RPN string
  2. Repeat until we reach end of infix expression
    1. Get token (operand or operator); skip white spaces
    2. If token is:
      1. Left parenthesis: Push it into stack
      2. Right parenthesis: Keep popping from the stack and appending to RPN string until we reach the left parenthesis.
        If stack becomes empty and we didn't reach the left parenthesis then break out with error "Unbalanced parenthesis"
      3. Operator: If stack is empty or operator has a higher precedence than the top of the stack then push operator into stack. Else if operator has lower precedence then we keep popping and appending to RPN string, this is repeated until operator in stack has lower precedence than the current operator.
      4. An operand: we simply append it to RPN string.
    3. When the infix expression is finished, we start popping off the stack and appending to RPN string till stack becomes empty.

Now evaluating a postfix (RPN) expression is even easier:

  1. Initialize stack (integer stack) for storing results, prepare input postfix (or RPN) expression.
  2. Start scanning from left to right till we reach end of RPN expression
  3. Get token, if token is:
    1. An operator:
      1. Get top of stack and store into variable op2; Pop the stack
      2. Get top of stack and store into variable op1; Pop the stack
      3. Do the operation expression in operator on both op1 and op2
      4. Push the result into the stack
    2. An operand: stack its numerical representation into our numerical stack.
  4. At the end of the RPN expression, the stack should only have one value and that should be the result and can be retrieved from the top of the stack.
To use the code:
#include <iostream.h>
#include <string>
#include "ExpressionEvaluator.h"

using std::string;

int main()
{
  long result;
  double resultdbl;
  int err;

  string s;
  
  
  s = "1+2*(1-2-3-4)";
  err = ExpressionEvaluator::calculateLong(s, result);
  if (err != ExpressionEvaluator::eval_ok)
    cout << "Error while evaluating!" << endl;
  else
    cout << "Evaluation of (int):" << s.c_str() << " yielded: " 
      << result << endl;

  s = "1.1/5.5+99-(4.1*(2+1)-5)";
  err = ExpressionEvaluator::calculateDouble(s, resultdbl);
  if (err != ExpressionEvaluator::eval_ok)
    cout << "Error while evaluating!" << endl;
  else
    cout << "Evaluation of (double):" << s.c_str() << " yielded: "
       << resultdbl << endl;

  return 0;
}

Extending the code

This code can be extended to allow you perform other operations, however they must be binary operation (takes two operands). To extended the code simply add a new operator into the "operators" array along with its precedence value. If you introduce a new symbol make sure you add the symbol into the "operators[0]" string too. Precedence is important for generating a proper postfix expression. After adding a new operator, define its behaviour in the "evaluateRPN" function as:

if (token == "PUT YOUR OPERATOR SYMBOL HERE")
  r = doMyOperation(op1, op2);

Hope you find this code and article useful.

References

History

  • Sunday, November 2, 2003
    • Initial version
  • Monday, November 3, 2003
    • Fixed precedence rule of multiplication
  • Tuesday, November 4, 2003
    • Fixed a bug in isOperator()
    • Added support for negative and positive numbers as: -1 or +1
      (initially they were supported as: 0-1 or 0+1)
    • Added exception handling and foolproof against malformed expression
    • Added >=, <=, != operators

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
Elias (aka lallousx86, @0xeb) has always been interested in the making of things and their inner workings.

His computer interests include system programming, reverse engineering, writing libraries, tutorials and articles.

In his free time, and apart from researching, his favorite reading topics include: dreams, metaphysics, philosophy, psychology and any other human/mystical science.

Former employee of Microsoft and Hex-Rays (the creators of IDA Pro), was responsible about many debugger plugins, IDAPython project ownership and what not.

Elias currently works as an Anticheat engineer in Blizzard Entertainment.

Elias co-authored 2 books and authored one book:

- Practical Reverse Engineering
- The Antivirus Hacker's Handbook
- The Art of Batch Files Programming

Comments and Discussions

 
QuestionNOT operator? Pin
twinbee4-Jun-08 8:16
twinbee4-Jun-08 8:16 
QuestionHow about to offer a unicode version? Pin
Peter, Chan12-Jul-07 16:38
Peter, Chan12-Jul-07 16:38 
AnswerRe: How about to offer a unicode version? Pin
Elias Bachaalany15-Jul-07 23:26
Elias Bachaalany15-Jul-07 23:26 
Generalnegative numbers after operators Pin
JamieMcLaughlin12-Nov-06 4:29
JamieMcLaughlin12-Nov-06 4:29 
GeneralRe: negative numbers after operators Pin
Elias Bachaalany14-Nov-06 22:42
Elias Bachaalany14-Nov-06 22:42 
GeneralRe: negative numbers after operators Pin
JamieMcLaughlin16-Nov-06 20:18
JamieMcLaughlin16-Nov-06 20:18 
GeneralRe: negative numbers after operators Pin
agahowa11-May-10 6:22
agahowa11-May-10 6:22 
GeneralThanks to the author Pin
jewelgal10-Apr-06 15:31
jewelgal10-Apr-06 15:31 
GeneralRe: Thanks to the author Pin
Elias Bachaalany10-Apr-06 20:50
Elias Bachaalany10-Apr-06 20:50 
GeneralRe: Thanks to the author Pin
jewelgal11-Apr-06 21:49
jewelgal11-Apr-06 21:49 
GeneralRe: Thanks to the author Pin
Elias Bachaalany11-Apr-06 22:03
Elias Bachaalany11-Apr-06 22:03 
GeneralThanks! (and get rid of std::string) Pin
cccMangus8-Nov-05 10:16
cccMangus8-Nov-05 10:16 
GeneralRe: Thanks! (and get rid of std::string) Pin
Elias Bachaalany10-Nov-05 23:05
Elias Bachaalany10-Nov-05 23:05 
GeneralRe: Thanks! (and get rid of std::string) Pin
Rusty FunkNut13-Aug-06 3:31
Rusty FunkNut13-Aug-06 3:31 
General!= operator Pin
arisnova19-Jan-05 7:49
arisnova19-Jan-05 7:49 
GeneralRe: != operator Pin
Elias Bachaalany19-Jan-05 22:26
Elias Bachaalany19-Jan-05 22:26 
Generalnegation and exponentiation Pin
Anonymous6-Sep-04 18:52
Anonymous6-Sep-04 18:52 
GeneralRe: negation and exponentiation Pin
Elias Bachaalany7-Sep-04 21:04
Elias Bachaalany7-Sep-04 21:04 
GeneralRe: negation and exponentiation Pin
Member 111178411-Sep-04 18:16
Member 111178411-Sep-04 18:16 
GeneralCool! However, it doesn't take floating point input! Pin
cccMangus14-Aug-04 21:03
cccMangus14-Aug-04 21:03 
GeneralRe: Cool! However, it doesn't take floating point input! Pin
Elias Bachaalany17-Aug-04 21:05
Elias Bachaalany17-Aug-04 21:05 
GeneralRe: Cool! However, it doesn't take floating point input! Pin
cccMangus18-Aug-04 2:57
cccMangus18-Aug-04 2:57 
QuestionHow about sin Pin
Isidor18-Jan-04 7:28
Isidor18-Jan-04 7:28 
QuestionHow about the OPs that only take one operand? Pin
CatGor28-Dec-03 23:30
CatGor28-Dec-03 23:30 
I intend to implement some single operand operation (
such as sin(), abs() etc) into this module, would you have
time to hint me the directions? As the code is doing char by
char, odinary form "ABS()" might be out of the question?

Thank you and Best wishes!

Kevin,Smile | :)
AnswerRe: How about the OPs that only take one operand? Pin
Stephane Rodriguez.29-Dec-03 0:59
Stephane Rodriguez.29-Dec-03 0:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.