Convert following infix expression to the prefix expression.
a - b + c * (d / e - (f + g))
Answer Posted / madhu
a-b+c*(d/e-(f+g))
a-b+c*(d/e-+fg)
a-b+c*(/de-+fg)
a-b+c*-/de+fg
a-b+*c-/de+fg
-ab+*c-/de+fg
+-ab*c-/de+fg
| Is This Answer Correct ? | 11 Yes | 4 No |
Post New Answer View All Answers
Is treeset sorted?
What is array simple?
List the area of applications of data structure.
Can hashtable have duplicate values?
What are the advantages of stack?
What is a matrix?
How do you find the height of a binary tree?
Write the steps involved in the insertion and deletion of an element in the stack.
Why is hashing used?
Write a recursive c function to calculate the height of a binary tree.
Can you make an arraylist of arrays?
Write any two principles of gradation of structures.
How to get the index of an array element?
Explain implementation of traversal of a binary tree.
Does treeset remove duplicates?