3.9. 中缀、前缀和后缀表达式¶
3.9. Infix, Prefix, and Postfix Expressions
当你写下一个算术表达式,如 B · C 时,表达式的形式会提供信息,以便你可以正确解释它。在这个例子中,我们知道变量 B 正在被变量 C 乘,因为乘法运算符 · 出现在它们之间。这种符号表示法称为 中缀,因为运算符 在 两个操作数之间。
考虑另一个中缀示例 A + B · C。运算符 + 和 · 仍然出现在操作数之间,但存在一个问题。这些运算符作用于哪个操作数?+ 运算符作用于 A 和 B,还是 · 运算符作用于 B 和 C?这个表达式似乎含糊不清。
实际上,你已经很长时间在阅读和编写这种类型的表达式,这些并不会对你造成困扰。原因在于你了解 + 和 · 运算符的一些规则。每个运算符都有一个 优先级 级别。优先级更高的运算符会在优先级较低的运算符之前使用。唯一可以改变这种顺序的情况是存在括号。算术运算符的优先级顺序是将乘法和除法置于加法和减法之上。如果两个运算符具有相同的优先级,则使用从左到右的顺序或结合性。
我们用运算符优先级来解释有问题的表达式 A + B · C。首先进行 B 和 C 的乘法,然后将结果加上 A。 (A + B) · C 会强制先进行 A 和 B 的加法,然后进行乘法。在表达式 A + B + C 中,按照优先级(通过结合性),最左边的 + 会先进行。
虽然这一切对你来说可能很明显,但要记住计算机需要确切知道要执行哪些操作以及执行的顺序。确保操作顺序没有混淆的一种方法是创建一个称为 完全括号化 的表达式。这种类型的表达式为每个运算符使用一对括号。括号决定了操作的顺序;没有歧义。也不需要记住任何优先级规则。
表达式 A + B · C + D 可以重写为 ((A + (B · C)) + D) 来显示乘法先进行,然后是最左边的加法。 A + B + C + D 可以写作 (((A + B) + C) + D),因为加法操作从左到右结合。
还有两种其他非常重要的表达式格式,开始时可能对你不太明显。考虑中缀表达式 A + B。如果我们将运算符移到两个操作数之前,会发生什么?得到的表达式是 + A B。同样,我们可以将运算符移到末尾,得到 A B +。这些看起来有点奇怪。
这些对运算符相对于操作数的位置的改变创建了两种新的表达式格式,前缀 和 后缀。前缀表达式表示法要求所有运算符出现在它们操作的两个操作数之前。而后缀则要求运算符出现在相应的操作数之后。更多的示例应该有助于使这一点更清晰(见 Table 2
)。
A + B · C 在前缀表达式中写作 + A · B C。乘法运算符紧接在操作数 B 和 C 之前,表示 · 优先于 +。然后加法运算符出现在 A 和乘法结果之前。
在后缀表达式中,表达式为 A B C · +。同样,操作顺序被保持,因为 · 紧接在 B 和 C 之后,表示 · 优先于 +,加法运算符随后出现。虽然运算符移动了,现在出现在它们各自的操作数之前或之后,但操作数之间的顺序保持完全不变。
Table 2: 中缀、前缀和后缀表达式示例
中缀表达式 | 前缀表达式 | 后缀表达式 |
---|---|---|
A + B | + A B | A B + |
A + B · C | + A · B C | A B C · + |
现在考虑中缀表达式 (A + B) · C。回想一下,在这种情况下,中缀表示法要求括号强制先进行加法,然后再进行乘法。然而,当 A + B 写成前缀时,加法运算符被简单地移到操作数之前,+ A B。这个操作的结果成为乘法的第一个操作数。乘法运算符移到整个表达式之前,得到 · + A B C。同样,在后缀表达式中 A B + 强制先进行加法,然后对结果和剩余的操作数 C 进行乘法。正确的后缀表达式是 A B + C ·。
再次考虑这三种表达式(见 Table 3
)。发生了一个非常重要的事情。括号去了哪里?为什么在前缀和后缀表示法中我们不需要它们?答案是运算符对于它们操作的操作数不再模糊。只有中缀表示法需要额外的符号。前缀和后缀表达式中的操作顺序完全由运算符的位置决定,别无其他。在很多方面,这使得中缀表示法成为最不理想的表示法。
Table 3: 中缀、前缀和后缀表达式的比较
中缀表达式 | 前缀表达式 | 后缀表达式 |
---|---|---|
(A + B) · C | · + A B C | A B + C · |
Table 4
展示了一些额外的中缀表达式及其等效的前缀和后缀表达式。确保你理解它们在操作顺序上的等价性。
Table 4: 额外的中缀、前缀和后缀表达式示例
中缀表达式 | 前缀表达式 | 后缀表达式 |
---|---|---|
A + B · C + D | + + A · B C D | A B C · + D + |
(A + B) · (C + D) | · + A B + C D | A B + C D + · |
A · B + C · D | + · A B · C D | A B · C D · + |
A + B + C + D | + + + A B C D | A B + C + D + |
When you write an arithmetic expression such as B · C, the form of the expression provides you with information so that you can interpret it correctly. In this case we know that the variable B is being multiplied by the variable C since the multiplication operator · appears between them in the expression. This type of notation is referred to as infix since the operator is in between the two operands that it is working on.
Consider another infix example, A + B · C. The operators + and · still appear between the operands, but there is a problem. Which operands do they work on? Does the + work on A and B, or does the · take B and C? The expression seems ambiguous.
In fact, you have been reading and writing these types of expressions for a long time and they do not cause you any problem. The reason for this is that you know something about the operators + and ·. Each operator has a precedence level. Operators of higher precedence are used before operators of lower precedence. The only thing that can change that order is the presence of parentheses. The precedence order for arithmetic operators places multiplication and division above addition and subtraction. If two operators of equal precedence appear, then a left-to-right ordering or associativity is used.
Let’s interpret the troublesome expression A + B · C using operator precedence. B and C are multiplied first, and A is then added to that result. (A + B) · C would force the addition of A and B to be done first before the multiplication. In the expression A + B + C, by precedence (via associativity), the leftmost + would be done first.
Although all this may be obvious to you, remember that computers need to know exactly what operations to perform and in what order. One way to write an expression that guarantees there will be no confusion with respect to the order of operations is to create what is called a fully parenthesized expression. This type of expression uses one pair of parentheses for each operator. The parentheses dictate the order of operations; there is no ambiguity. There is also no need to remember any precedence rules.
The expression A + B · C + D can be rewritten as ((A + (B · C)) + D) to show that the multiplication happens first, followed by the leftmost addition. A + B + C + D can be written as (((A + B) + C) + D) since the addition operations associate from left to right.
There are two other very important expression formats that may not seem obvious to you at first. Consider the infix expression A + B. What would happen if we moved the operator before the two operands? The resulting expression would be + A B. Likewise, we could move the operator to the end, resulting in A B +. These look a bit strange.
These changes to the position of the operator with respect to the operands create two new expression formats, prefix and postfix. Prefix expression notation requires that all operators precede the two operands that they work on. Postfix, on the other hand, requires that its operators come after the corresponding operands. A few more examples should help to make this a bit clearer (see Table 2
).
A + B · C would be written as + A · B C in prefix. The multiplication operator comes immediately before the operands B and C, denoting that · has precedence over +. The addition operator then appears before the A and the result of the multiplication.
In postfix, the expression would be A B C · +. Again, the order of operations is preserved since the · appears immediately after the B and the C, denoting that · has precedence, with + coming after. Although the operators moved and now appear either before or after their respective operands, the order of the operands stayed exactly the same relative to one another.
Table 2: Examples of Infix, Prefix, and Postfix Expressions
Infix Expression | Prefix Expression | Postfix Expression |
---|---|---|
A + B | + A B | A B + |
A + B · C | + A · B C | A B C · + |
Now consider the infix expression (A + B) · C. Recall that in this case, infix requires the parentheses to force the performance of the addition before the multiplication. However, when A + B was written in prefix, the addition operator was simply moved before the operands, + A B. The result of this operation becomes the first operand for the multiplication. The multiplication operator is moved in front of the entire expression, giving us · + A B C. Likewise, in postfix A B + forces the addition to happen first. The multiplication can be done to that result and the remaining operand C. The proper postfix expression is then A B + C ·.
Consider these three expressions again (see Table 3
). Something very important has happened. Where did the parentheses go? Why don’t we need them in prefix and postfix? The answer is that the operators are no longer ambiguous with respect to the operands that they work on. Only infix notation requires the additional symbols. The order of operations within prefix and postfix expressions is completely determined by the position of the operator and nothing else. In many ways, this makes infix the least desirable notation to use.
Table 3: Comparison of Infix, Prefix, and Postfix Expressions
Infix Expression | Prefix Expression | Postfix Expression |
---|---|---|
(A + B) · C | · + A B C | A B + C · |
Table 4
shows some additional examples of infix expressions and the equivalent prefix and postfix expressions. Be sure that you understand how they are equivalent in terms of the order of the operations being performed.
Table 4: Additional Examples of Infix, Prefix, and Postfix Expressions
Infix Expression | Prefix Expression | Postfix Expression |
---|---|---|
A + B · C + D | + + A · B C D | A B C · + D + |
(A + B) · (C + D) | · + A B + C D | A B + C D + · |
A · B + C · D | + · A B · C D | A B · C D · + |
A + B + C + D | + + + A B C D | A B + C + D + |
3.9.1. 中缀表达式转换为前缀和后缀¶
3.9.1. Conversion of Infix Expressions to Prefix and Postfix
So far, we have used ad hoc methods to convert between infix expressions and the equivalent prefix and postfix expression notations. As you might expect, there are algorithmic ways to perform the conversion that allow any expression of any complexity to be correctly transformed.
The first technique that we will consider uses the notion of a fully parenthesized expression that was discussed earlier. Recall that A + B · C can be written as (A + (B · C)) to show explicitly that the multiplication has precedence over the addition. On closer observation, however, you can see that each parenthesis pair also denotes the beginning and the end of an operand pair with the corresponding operator in the middle.
Look at the right parenthesis in the subexpression (B · C) above. If we were to move the multiplication symbol to that position and remove the matching left parenthesis, giving us B C ·, we would in effect have converted the subexpression to postfix notation. If the addition operator were also moved to its corresponding right parenthesis position and the matching left parenthesis were removed, the complete postfix expression would result (see Figure 6
).
If we do the same thing but instead of moving the symbol to the position of the right parenthesis, we move it to the left, we get prefix notation (see Figure 7
). The position of the parenthesis pair is actually a clue to the final position of the enclosed operator.
So in order to convert an expression, no matter how complex, to either prefix or postfix notation, fully parenthesize the expression using the order of operations. Then move the enclosed operator to the position of either the left or the right parenthesis depending on whether you want prefix or postfix notation.
Here is a more complex expression: (A + B) · C - (D - E) · (F + G). Figure 8
shows the conversion to prefix and postfix notations.
So far, we have used ad hoc methods to convert between infix expressions and the equivalent prefix and postfix expression notations. As you might expect, there are algorithmic ways to perform the conversion that allow any expression of any complexity to be correctly transformed.
The first technique that we will consider uses the notion of a fully parenthesized expression that was discussed earlier. Recall that A + B · C can be written as (A + (B · C)) to show explicitly that the multiplication has precedence over the addition. On closer observation, however, you can see that each parenthesis pair also denotes the beginning and the end of an operand pair with the corresponding operator in the middle.
Look at the right parenthesis in the subexpression (B · C) above. If we were to move the multiplication symbol to that position and remove the matching left parenthesis, giving us B C ·, we would in effect have converted the subexpression to postfix notation. If the addition operator were also moved to its corresponding right parenthesis position and the matching left parenthesis were removed, the complete postfix expression would result (see Figure 6
).
If we do the same thing but instead of moving the symbol to the position of the right parenthesis, we move it to the left, we get prefix notation (see Figure 7
). The position of the parenthesis pair is actually a clue to the final position of the enclosed operator.
So in order to convert an expression, no matter how complex, to either prefix or postfix notation, fully parenthesize the expression using the order of operations. Then move the enclosed operator to the position of either the left or the right parenthesis depending on whether you want prefix or postfix notation.
Here is a more complex expression: (A + B) · C - (D - E) · (F + G). Figure 8
shows the conversion to prefix and postfix notations.
3.9.2. 一般的中缀转后缀转换¶
3.9.2. General Infix-to-Postfix Conversion
We need to develop an algorithm to convert any infix expression to a postfix expression. To do this we will look closer at the conversion process.
Consider once again the expression A + B · C. As shown above, A B C · + is the postfix equivalent. We have already noted that the operands A, B, and C stay in their relative positions. It is only the operators that change position. Let’s look again at the operators in the infix expression. The first operator that appears from left to right is +. However, in the postfix expression, + is at the end since the next operator, ·, has precedence over addition. The order of the operators in the original expression is reversed in the resulting postfix expression.
As we process the expression, the operators have to be saved somewhere since their corresponding right operands are not seen yet. Also, the order of these saved operators may need to be reversed due to their precedence. This is the case with the addition and the multiplication in this example. Since the addition operator comes before the multiplication operator and has lower precedence, it needs to appear after the multiplication operator is used. Because of this reversal of order, it makes sense to consider using a stack to keep the operators until they are needed.
What about (A + B) · C? Recall that A B + C · is the postfix equivalent. Again, processing this infix expression from left to right, we see + first. In this case, when we see ·, + has already been placed in the result expression because it has precedence over · by virtue of the parentheses. We can now start to see how the conversion algorithm will work. When we see a left parenthesis, we will save it to denote that another operator of high precedence will be coming. That operator will need to wait until the corresponding right parenthesis appears to denote its position (recall the fully parenthesized technique). When that right parenthesis does appear, the operator can be popped from the stack.
As we scan the infix expression from left to right, we will use a stack to keep the operators. This will provide the reversal that we noted in the first example. The top of the stack will always be the most recently saved operator. Whenever we read a new operator, we will need to consider how that operator compares in precedence with the operators, if any, already on the stack.
Assume the infix expression is a string of tokens delimited by spaces. The operator tokens are ·, /, +, and -, along with the left and right parentheses, ( and ). The operand tokens are the single-character identifiers A, B, C, and so on. The following steps will produce a string of tokens in postfix order.
- Create an empty stack called
op_stack
for keeping operators. Create an empty list for output. - Convert the input infix string to a list by using the string method
split
. -
Scan the token list from left to right.
-
If the token is an operand, append it to the end of the output list.
-
If the token is a left parenthesis, push it on the
op_stack
. -
If the token is a right parenthesis, pop the
op_stack
until the corresponding left parenthesis is removed. Append each operator to the end of the output list. -
If the token is an operator, ·, /, +, or -, push it on the
op_stack
. However, first remove any operators already on theop_stack
that have higher or equal precedence and append them to the output list. -
When the input expression has been completely processed, check the
op_stack
. Any operators still on the stack can be removed and appended to the end of the output list.
Figure 9
shows the conversion algorithm working on the expression A · B + C · D. Note that the first · operator is removed upon seeing the + operator. Also, + stays on the stack when the second · occurs, since multiplication has precedence over addition. At the end of the infix expression the stack is popped twice, removing both operators and placing + as the last operator in the postfix expression.
In order to code the algorithm in Python, we will use a dictionary called prec
to hold the precedence values for the operators, as seen in in ActiveCode 1
. This dictionary will map each operator to an integer that can be compared against the precedence levels of other operators (we have arbitrarily used the integers 3, 2, and 1). The left parenthesis will receive the lowest value possible. This way any operator that is compared against it will have higher precedence and will be placed on top of it. Line 15 defines the operands to be any upper-case character or digit.
Activity: 3.9.2.1 Converting Infix Expressions to Postfix Expressions | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
A few more examples of execution in the Python shell are shown below.
>>> infix_to_postfix("( A + B ) * ( C + D )")
'A B + C D + *'
>>> infix_to_postfix("( A + B ) * C")
'A B + C *'
>>> infix_to_postfix("A + B * C")
'A B C * +'
>>>
We need to develop an algorithm to convert any infix expression to a postfix expression. To do this we will look closer at the conversion process.
Consider once again the expression A + B · C. As shown above, A B C · + is the postfix equivalent. We have already noted that the operands A, B, and C stay in their relative positions. It is only the operators that change position. Let’s look again at the operators in the infix expression. The first operator that appears from left to right is +. However, in the postfix expression, + is at the end since the next operator, ·, has precedence over addition. The order of the operators in the original expression is reversed in the resulting postfix expression.
As we process the expression, the operators have to be saved somewhere since their corresponding right operands are not seen yet. Also, the order of these saved operators may need to be reversed due to their precedence. This is the case with the addition and the multiplication in this example. Since the addition operator comes before the multiplication operator and has lower precedence, it needs to appear after the multiplication operator is used. Because of this reversal of order, it makes sense to consider using a stack to keep the operators until they are needed.
What about (A + B) · C? Recall that A B + C · is the postfix equivalent. Again, processing this infix expression from left to right, we see + first. In this case, when we see ·, + has already been placed in the result expression because it has precedence over · by virtue of the parentheses. We can now start to see how the conversion algorithm will work. When we see a left parenthesis, we will save it to denote that another operator of high precedence will be coming. That operator will need to wait until the corresponding right parenthesis appears to denote its position (recall the fully parenthesized technique). When that right parenthesis does appear, the operator can be popped from the stack.
As we scan the infix expression from left to right, we will use a stack to keep the operators. This will provide the reversal that we noted in the first example. The top of the stack will always be the most recently saved operator. Whenever we read a new operator, we will need to consider how that operator compares in precedence with the operators, if any, already on the stack.
Assume the infix expression is a string of tokens delimited by spaces. The operator tokens are ·, /, +, and -, along with the left and right parentheses, ( and ). The operand tokens are the single-character identifiers A, B, C, and so on. The following steps will produce a string of tokens in postfix order.
- Create an empty stack called
op_stack
for keeping operators. Create an empty list for output. - Convert the input infix string to a list by using the string method
split
. -
Scan the token list from left to right.
-
If the token is an operand, append it to the end of the output list.
-
If the token is a left parenthesis, push it on the
op_stack
. -
If the token is a right parenthesis, pop the
op_stack
until the corresponding left parenthesis is removed. Append each operator to the end of the output list. -
If the token is an operator, ·, /, +, or -, push it on the
op_stack
. However, first remove any operators already on theop_stack
that have higher or equal precedence and append them to the output list. -
When the input expression has been completely processed, check the
op_stack
. Any operators still on the stack can be removed and appended to the end of the output list.
Figure 9
shows the conversion algorithm working on the expression A · B + C · D. Note that the first · operator is removed upon seeing the + operator. Also, + stays on the stack when the second · occurs, since multiplication has precedence over addition. At the end of the infix expression the stack is popped twice, removing both operators and placing + as the last operator in the postfix expression.
In order to code the algorithm in Python, we will use a dictionary called prec
to hold the precedence values for the operators, as seen in in ActiveCode 1
. This dictionary will map each operator to an integer that can be compared against the precedence levels of other operators (we have arbitrarily used the integers 3, 2, and 1). The left parenthesis will receive the lowest value possible. This way any operator that is compared against it will have higher precedence and will be placed on top of it. Line 15 defines the operands to be any upper-case character or digit.
Activity: 3.9.2.1 Converting Infix Expressions to Postfix Expressions | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
A few more examples of execution in the Python shell are shown below.
>>> infix_to_postfix("( A + B ) * ( C + D )")
'A B + C D + *'
>>> infix_to_postfix("( A + B ) * C")
'A B + C *'
>>> infix_to_postfix("A + B * C")
'A B C * +'
>>>
3.9.3. 后缀表达式求值¶
3.9.3. Postfix Evaluation
As a final stack example, we will consider the evaluation of an expression that is already in postfix notation. In this case, a stack is again the data structure of choice. However, as you scan the postfix expression, it is the operands that must wait, not the operators as in the conversion algorithm above. Another way to think about the solution is that whenever an operator is seen on the input, the two most recent operands will be used in the evaluation.
To see this in more detail, consider the postfix expression 4 5 6 · +. As you scan the expression from left to right, you first encounter the operands 4 and 5. At this point, you are still unsure what to do with them until you see the next symbol. Placing each on the stack ensures that they are available if an operator comes next.
In this case, the next symbol is another operand. So, as before, push it and check the next symbol. Now we see an operator, ·. This means that the two most recent operands need to be used in a multiplication operation. By popping the stack twice, we can get the proper operands and then perform the multiplication (in this case getting the result 30).
We can now handle this result by placing it back on the stack so that it can be used as an operand for the later operators in the expression. When the final operator is processed, there will be only one value left on the stack. Pop and return it as the result of the expression. Figure 10
shows the stack contents as this entire example expression is being processed.
Figure 11
shows a slightly more complex example, 7 8 + 3 2 + /. There are two things to note in this example. First, the stack size grows, shrinks, and then grows again as the subexpressions are evaluated. Second, the division operation needs to be handled carefully. Recall that the operands in the postfix expression are in their original order since postfix changes only the placement of operators. When the operands for the division are popped from the stack, they are reversed. Since division is not a commutative operator, in other words \(15/5\) is not the same as \(5/15\), we must be sure that the order of the operands is not switched.
Assume the postfix expression is a string of tokens delimited by spaces. The operators are ·, /, +, and - and the operands are assumed to be single-digit integer values. The output will be an integer result.
- Create an empty stack called
operand_stack
. - Convert the string to a list by using the string method
split
. -
Scan the token list from left to right.
-
If the token is an operand, convert it from a string to an integer and push the value onto the
operand_stack
. -
If the token is an operator, ·, /, +, or -, it will need two operands. Pop the
operand_stack
twice. The first pop is the second operand and the second pop is the first operand. Perform the arithmetic operation. Push the result back on theoperand_stack
. -
When the input expression has been completely processed, the result is on the stack. Pop the
operand_stack
and return the value.
The complete function for the evaluation of postfix expressions is shown in ActiveCode 2
. To assist with the arithmetic, a helper function do_math
is defined. It will take two operands and an operator and then perform the proper arithmetic operation.
Activity: 3.9.3.1 Postfix Evaluation | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
|
It is important to note that in both the postfix conversion and the postfix evaluation programs we assumed that there were no errors in the input expression. Using these programs as a starting point, you can easily see how error detection and reporting can be included. We leave this as an exercise at the end of the chapter.
Self Check
Without using the activecode infix_to_postfix
function, convert the following expression to postfix 10 + 3 * 5 / (16 - 4)
.
|blank|
- :10\s+3\s+5\s*\s16\s+4\s-\s/\s*+: Correct.
- :10.3.5.16.4\s+[ /+-]: The numbers appear to be in the correct order check your operators
- Remember the numbers will be in the same order as the original equation
What is the result of evaluating the following: 17 10 + 3 * 9 / ==
?
|blank|
- :9: Correct.
- Remember to push each intermediate result back on the stack
Modify the infix_to_postfix
function so that it can convert the following expression: 5 * 3 ^ (4 - 2)
. Run the function on the expression and paste the answer here:
|blank|
- :5\s+3\s+4\s+2\s-\s**\s**: Correct.
- Hint: You only need to add one line to the function!!
As a final stack example, we will consider the evaluation of an expression that is already in postfix notation. In this case, a stack is again the data structure of choice. However, as you scan the postfix expression, it is the operands that must wait, not the operators as in the conversion algorithm above. Another way to think about the solution is that whenever an operator is seen on the input, the two most recent operands will be used in the evaluation.
To see this in more detail, consider the postfix expression 4 5 6 · +. As you scan the expression from left to right, you first encounter the operands 4 and 5. At this point, you are still unsure what to do with them until you see the next symbol. Placing each on the stack ensures that they are available if an operator comes next.
In this case, the next symbol is another operand. So, as before, push it and check the next symbol. Now we see an operator, ·. This means that the two most recent operands need to be used in a multiplication operation. By popping the stack twice, we can get the proper operands and then perform the multiplication (in this case getting the result 30).
We can now handle this result by placing it back on the stack so that it can be used as an operand for the later operators in the expression. When the final operator is processed, there will be only one value left on the stack. Pop and return it as the result of the expression. Figure 10
shows the stack contents as this entire example expression is being processed.
Figure 11
shows a slightly more complex example, 7 8 + 3 2 + /. There are two things to note in this example. First, the stack size grows, shrinks, and then grows again as the subexpressions are evaluated. Second, the division operation needs to be handled carefully. Recall that the operands in the postfix expression are in their original order since postfix changes only the placement of operators. When the operands for the division are popped from the stack, they are reversed. Since division is not a commutative operator, in other words \(15/5\) is not the same as \(5/15\), we must be sure that the order of the operands is not switched.
Assume the postfix expression is a string of tokens delimited by spaces. The operators are ·, /, +, and - and the operands are assumed to be single-digit integer values. The output will be an integer result.
- Create an empty stack called
operand_stack
. - Convert the string to a list by using the string method
split
. -
Scan the token list from left to right.
-
If the token is an operand, convert it from a string to an integer and push the value onto the
operand_stack
. -
If the token is an operator, ·, /, +, or -, it will need two operands. Pop the
operand_stack
twice. The first pop is the second operand and the second pop is the first operand. Perform the arithmetic operation. Push the result back on theoperand_stack
. -
When the input expression has been completely processed, the result is on the stack. Pop the
operand_stack
and return the value.
The complete function for the evaluation of postfix expressions is shown in ActiveCode 2
. To assist with the arithmetic, a helper function do_math
is defined. It will take two operands and an operator and then perform the proper arithmetic operation.
Activity: 3.9.3.1 Postfix Evaluation | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
|
It is important to note that in both the postfix conversion and the postfix evaluation programs we assumed that there were no errors in the input expression. Using these programs as a starting point, you can easily see how error detection and reporting can be included. We leave this as an exercise at the end of the chapter.
Self Check
Without using the activecode infix_to_postfix
function, convert the following expression to postfix 10 + 3 * 5 / (16 - 4)
.
|blank|
- :10\s+3\s+5\s*\s16\s+4\s-\s/\s*+: Correct.
- :10.3.5.16.4\s+[ /+-]: The numbers appear to be in the correct order check your operators
- Remember the numbers will be in the same order as the original equation
What is the result of evaluating the following: 17 10 + 3 * 9 / ==
?
|blank|
- :9: Correct.
- Remember to push each intermediate result back on the stack
Modify the infix_to_postfix
function so that it can convert the following expression: 5 * 3 ^ (4 - 2)
. Run the function on the expression and paste the answer here:
|blank|
- :5\s+3\s+4\s+2\s-\s**\s**: Correct.
- Hint: You only need to add one line to the function!!
创建日期: 2024年9月9日