Data Structures and Algorithms with Object-Oriented Design Patterns in C#
next up previous contents index

Applications

 

Consider the following expression:

  equation5660

In order to determine the value of this expression, we first compute the sum 5+9 and then multiply that by 2. Then we compute the product tex2html_wrap_inline60527 and add it to the previous result to get the final answer. Notice that the order in which the operations are to be done is crucial. Clearly if the operations are not done in the correct order, the wrong result is computed.

The expression above is written using the usual mathematical notation. This notation is called infix  notation. What distinguishes this notation is the way that expressions involving binary operators are written. A binary operator  is an operator which has exactly two operands, such as + and tex2html_wrap_inline60531. In infix notation, binary operators appear in between their operands.

Another characteristic of infix notation is that the order of operations is determined by operator precedence . For example, the tex2html_wrap_inline60531 (multiplication) operator has higher precedence than does the + (addition) operator. When an evaluation order is desired that is different from that provided by the precedence, parentheses , ``('' and ``)'', are used to override precedence rules. An expression in parentheses is evaluated first.

As an alternative to infix, the Polish logician Jan tex2html_wrap60545 ukasiewicz  introduced notations which require neither parentheses nor operator precedence rules. The first of these, the so-called Polish notation , places the binary operators before their operands. For Equation gif we would write:

displaymath60519

This is also called prefix notation, because the operators are written in front of their operands.

While prefix notation is completely unambiguous in the absence of parentheses, it is not very easy to read. A minor syntactic variation on prefix is to write the operands as a comma-separated list enclosed in parentheses as follows:

displaymath60520

While this notation seems somewhat foreign, in fact it is precisely the notation that is used for static method calls in C#:

Plus(Times(Plus(5,9) ,2), Times(6,5));

The second form of tex2html_wrap60545 ukasiewicz notation is the so-called Reverse-Polish notation  (RPN ). Equation gif is written as follows in RPN:

  equation5691

This notation is also called postfix notation for the obvious reason--the operators are written after their operands.

Postfix notation, like prefix notation, does not make use of operator precedence nor does it require the use of parentheses. A postfix expression can always be written without parentheses that expresses the desired evaluation order. For example, the expression tex2html_wrap_inline60537, in which the multiplication is done first, is written tex2html_wrap_inline60539; whereas the expression tex2html_wrap_inline60541 is written tex2html_wrap_inline60543.




next up previous contents index

Bruno Copyright © 2001 by Bruno R. Preiss, P.Eng. All rights reserved.