Recent questions tagged infix-prefix

0 votes
1 answer
32
Result for evaluating the following post fix105+606/*8-I'm confused whether it is correct postfix expression.
0 votes
1 answer
33
2 votes
1 answer
34
9 votes
3 answers
35
Choose the equivalent prefix form of the following expression(a+(b-c))*((d-e)/(f+g-h))*+a-bc/-de-+fgh*+a-bc-/de-+fgh*+a-bc/-ed-+fgh*+ab-c/-de-+fgh
1 votes
2 answers
37
What we can do if the unary operator comes in infix notation while converting it into postfix/prefix notations? For example, this $a = -b+c*d/e+f↑g↑h-i*j$
0 votes
1 answer
38
1. Is postorder same as Reverse polish notation(Postfix)?2. Is inorder same as polish notation(infix)?
4 votes
1 answer
39
Compute the postfix equivalent of the following infix arithmetic expression$a + b \ast c + d * e \uparrow f$where $\uparrow$ represents exponentiation. Assume normal ope...
1 votes
0 answers
41
Conver the following infix to Postfix and Prefix $log ( 3 ! )^ {log4} *log log ((6/7)*4+x)!$$ sin 2x cos (3x+4) $ Please use stack method to solve . Diagram would be app...
0 votes
1 answer
42
The postfix expression for the infix expression$$A + B*C/D +E$$isAB+*CD/E+ABC*D/+E+AB+C*D/E+A+*BCD/E+
2 votes
2 answers
43
Convert the infix to postfix and prefix expression1) log3! ^log4 *log log 6/7*4!2)log3!^sin 2*cos 3
0 votes
2 answers
44
2 votes
2 answers
45
4 votes
2 answers
46
The infix expression $A+(B-C)^*D$ is correctly represented in prefix notation as$A+B-C^*D$$+A^*-BCD$$ABC-D^*+$$A+BC-D^*$
2 votes
3 answers
47
44 votes
9 answers
50
Compute the post fix equivalent of the following expression $3^*\log(x+1)-\frac{a}{2}$
0 votes
1 answer
51
28 votes
3 answers
52
Which of the following is essential for converting an infix expression to the postfix form efficiently?An operator stackAn operand stackAn operand stack and an operator s...
32 votes
5 answers
54
Assume that the operators $+, -, \times$ are left associative and $^\hat{}$ is right associative. The order of precedence (from highest to lowest) is $ \ ^\hat{}, \times,...