Click here to Skip to main content
6,595,854 members and growing! (17,768 online)
Email Password   helpLost your password?
Languages » C / C++ Language » General     Intermediate

Expression evaluator : using RPN

By lallous

An article showing how to evaluate mathematical expressions using reverse polish notation (RPN)
VC6, Windows, Dev
Posted:2 Nov 2003
Updated:5 Nov 2003
Views:117,753
Bookmarked:46 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
24 votes for this article.
Popularity: 6.02 Rating: 4.36 out of 5
1 vote, 4.2%
1
1 vote, 4.2%
2
1 vote, 4.2%
3
5 votes, 20.8%
4
16 votes, 66.7%
5

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

About the Author

lallous


Member
Elias (aka lallous) 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.

Elias maintains a blog at http://lallousx86.wordpress.com/ and a website at http://lgwm.org/
Occupation: Web Developer
Location: Lebanon Lebanon

Other popular C / C++ Language articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 49 (Total in Forum: 49) (Refresh)FirstPrevNext
GeneralNOT operator? Pinmembertwinbee9:16 4 Jun '08  
GeneralHow about to offer a unicode version? PinmemberPeter, Chan17:38 12 Jul '07  
GeneralRe: How about to offer a unicode version? Pinmemberlallous0:26 16 Jul '07  
Generalnegative numbers after operators Pinmemberbanjaxx5:29 12 Nov '06  
GeneralRe: negative numbers after operators Pinmemberlallous23:42 14 Nov '06  
GeneralRe: negative numbers after operators Pinmemberbanjaxx21:18 16 Nov '06  
GeneralThanks to the author Pinmemberjewelgal16:31 10 Apr '06  
GeneralRe: Thanks to the author Pinmemberlallous21:50 10 Apr '06  
GeneralRe: Thanks to the author Pinmemberjewelgal22:49 11 Apr '06  
GeneralRe: Thanks to the author Pinmemberlallous23:03 11 Apr '06  
GeneralThanks! (and get rid of std::string) PinmembercccMangus11:16 8 Nov '05  
GeneralRe: Thanks! (and get rid of std::string) Pinmemberlallous0:05 11 Nov '05  
GeneralRe: Thanks! (and get rid of std::string) PinmemberRusty FunkNut4:31 13 Aug '06  
General!= operator Pinmemberarisnova8:49 19 Jan '05  
GeneralRe: != operator Pinmemberlallous23:26 19 Jan '05  
Generalnegation and exponentiation PinsussAnonymous19:52 6 Sep '04  
GeneralRe: negation and exponentiation Pinmemberlallous22:04 7 Sep '04  
GeneralRe: negation and exponentiation PinmemberDavid Orel19:16 11 Sep '04  
GeneralCool! However, it doesn't take floating point input! PinmembercccMangus22:03 14 Aug '04  
GeneralRe: Cool! However, it doesn't take floating point input! Pinmemberlallous22:05 17 Aug '04  
GeneralRe: Cool! However, it doesn't take floating point input! PinmembercccMangus3:57 18 Aug '04  
GeneralHow about sin PinmemberIsidor8:28 18 Jan '04  
GeneralHow about the OPs that only take one operand? PinmemberCatGor0:30 29 Dec '03  
GeneralRe: How about the OPs that only take one operand? PinmemberStephane Rodriguez.1:59 29 Dec '03  
GeneralRe: How about the OPs that only take one operand? Pinmemberlallous4:16 29 Dec '03  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 5 Nov 2003
Editor: Nishant Sivakumar
Copyright 2003 by lallous
Everything else Copyright © CodeProject, 1999-2009
Web17 | Advertise on the Code Project