Question

In: Computer Science

Use the algorithm below to evaluate the following infix expression: a) a + 3 * 4...

Use the algorithm below to evaluate the following infix expression: a) a + 3 * 4 – 9 b) ( 2 + 6 ) / ( 3 – 5 ) . Algorithm

WRITE STEP BY STEP

Scan the characters in the infix expression. While there are characters left in the infix expression: Check the next character in the expression.

1. If the next character is operand, remove it from the expression and push it onto the operand stack.

2. If the next character is the operator ‘^’, remove it from the expression and push it onto the operator stack.

3. If the next character is one of the operators ‘+’, ‘-‘, ‘*’ and ‘/’: check its precedence.

3.1. While the operator stack is not empty and the operator in the expression has a lower or same precedence than that at the top of the operator stack: - Pop an item from the operator stack. If it is ‘(‘, discard it, otherwise place the operator in the ‘Calculator’. - Pop two operands from the operand stack and place them in the ‘Calculator’. Note that the first popped value will be the second operand in the ‘Calculator’. - Push the result from the ‘Calculator’ onto the operand stack.

3.2. Remove the operator from the expression and push it onto the operator stack.

4. If the next character is ‘(‘, remove it from the expression and push it onto the operator stack. Note: when comparing the precedence of operators in the operator stack, a ‘(‘ has a lower precedence than any operator.

5. If the next character is ‘)‘, remove x it from the expression and discard it, and repeat the steps in 3.1 until ‘(‘ pops. Discard ‘(‘. When there are no more characters in the expression string, check the operator stack. While the operator stack is not empty: - Pop an item from the operator stack. - If it is ‘(‘, discard it, - Otherwise: - Place the operator in the ‘Calculator’. - Pop two operands from the operand stack and place them in the ‘Calculator’. Note that the first popped value will be the second operand in the ‘Calculator’. - Push the result from the ‘Calculator’ onto the operand stack. Upon completion, there should be only one value left in the stack and this is the value of the expression

Solutions

Expert Solution

a + 3 * 4 – 9

# indicate to empty

Symbol

Operand stack

Operator Stack

Pop operator

Operand 1

Operand 2

Calculate

a

a

#

+

a

#, +

3

a,3

#,+

*

a,3

#,+,*

4

a,3,4

#,+,*

-

a,

#,+

*

3

4

34*

a, 34*

#

+

a

34*

a34*+

a34*+

#, -

9

a34*+,9

#, -

-

a34*+

9

a34*+9-

a34*+9-

#

( 2 + 6 ) / ( 3 – 5 )

# indicate to empty

Symbol

Operand stack

Operator Stack

Pop operator

Operand 1

Operand 2

Calculate

(

#,(

2

2

#, (

+

2

#,( ,+

6

2,6

#,(, +

)

#,(,+

+

2

6

26+

26+

#

/

26+

#,/

(

26+

#,/,(

3

26+, 3

#, / , (

-

26+, 3

#, / , (, -

5

26+, 3,5

#, / , (, -

)

26+

#, /

-

3

5

35-

26+,35-

#, /

#

/

26+

34-

26+34-/

26+34-/

---------------------------------------------------------------------------------------------

If you have any query, please feel free to ask.

Thanks a lot.


Related Solutions

Write an algorithm to evaluate an infix expression in Java. Calculate its running time
Write an algorithm to evaluate an infix expression in Java. Calculate its running time
Following is an infix expression.                                       &n
Following is an infix expression.                                           ((A ^ B) ^ C ^ M * W / X ) ^ Y ^ Z Convert it into postfix and prefix using stack and verify through binary tree. Evaluate infix, postfix and prefix with the following values. A = 2, B = 2, C = 3, M = 1, W = 4, X = 8, Y = 1, Z = 3
1) Consider the following infix expressions. What is the equivalent postfix (reverse Polish notation) expression? 16/(5+3)b)...
1) Consider the following infix expressions. What is the equivalent postfix (reverse Polish notation) expression? 16/(5+3)b) A*B+C*Dc) X × Y + W × Z + V × U 2) Consider the postfix (reverse Polish notation) 10 5 + 6 3 - /. What is the equivalent infix expression?
Given ?(?) = sqrt(3 + ? ) + 4. Use the definition of 4.4.3 to evaluate...
Given ?(?) = sqrt(3 + ? ) + 4. Use the definition of 4.4.3 to evaluate each of the area in the range [0, 6] if ? = 4. a) Find the area under the curve when ?? ∗ is the left endpoint of the subinterval. b) Find the area under the curve when ?? ∗ is the midpoints of the subinterval. c) Find the area under the curve when ?? ∗ is the right endpoint of the subinterval.
In Java, write class InfixToPostfixConverter co convert an ordinary infix arithmetic expression (assume a valid expression...
In Java, write class InfixToPostfixConverter co convert an ordinary infix arithmetic expression (assume a valid expression is entered) with single-digit integers (to make things easier) such as (6 + 2) • 5 - 8 / 4 to a postfix expression. The postfix version (no parentheses are needed) of this infix expression is 6 2 + 5 * 8 4 / - The program should read the expression into StringBuilder or String infix and use the Stack and Stack Interface class...
Using a stack, write a program that turns a simple infix arithmetic expression into a postfix...
Using a stack, write a program that turns a simple infix arithmetic expression into a postfix expression. For example, 1 + 2 * 3 becomes 2 3 * 1 +. Also, evaluate the expression to ensure the expression is correct.
Write a class PostFix that has one method covert that converts an infix expression (as a...
Write a class PostFix that has one method covert that converts an infix expression (as a string input) to a postfix. Then Test it in a different class. code in java.
An arithmetic expression can be represented in three different formats: infix, prefix, and postfix. In the...
An arithmetic expression can be represented in three different formats: infix, prefix, and postfix. In the infix notation, the operator comes between two operands. In the postfix notation, the operator comes after its two operands. For example, an expression a/b can be transformed to ab/. The following are some examples of the postfix expressions: 2+6*4 Its postfix notation is 2 6 4 * + 2-3+5/4*9-1 Its postfix expression is 2 3 – 5 4 / 9 * + 1 -...
GIVEN THE FOLLOWING PSOSTFIX EXPRESSION, SHOW TO USE A STACK TO EVALUATE ITS FINAL VALUE. SHOW...
GIVEN THE FOLLOWING PSOSTFIX EXPRESSION, SHOW TO USE A STACK TO EVALUATE ITS FINAL VALUE. SHOW STACK CONFIGURATION DETAILS 20 3 18 8 - * 10 + +10 12 - /
Evaluate the following logical expression. Choose True if the expression evaluates to true; choose False if...
Evaluate the following logical expression. Choose True if the expression evaluates to true; choose False if the expression evaluates to false. (3 * 5 > 10) || (20 < 15) True False Evaluate the following logical expression. Choose True if the expression evaluates to true; choose False if the expression evaluates to false. "Medium" < "High" True False Evaluate the following logical expression. Choose True if the expression evaluates to true; choose False if the expression evaluates to false. (4...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT