Convert following infix expression to the prefix expression.
a - b + c * (d / e - (f + g))
Answer Posted / bipin from utkal university mc
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 (final answer)
| Is This Answer Correct ? | 34 Yes | 5 No |
Post New Answer View All Answers
Explain how is linked list implemented?
Which is the parent class of list
Can arraylist contain duplicates?
How many parts are there in a declaration statement?
What do you mean by general trees?
Define avl tree?
Differentiate between arraylist and vector.
What is the difference between a push and a pop?
How will you represent a linked list in a graphical view?
Can you use Bubble Sort To sort the number of elements.
What is the time complexity of arrays sort?
What is data structure what is need of it?
Can we override compareto method for enumerations?
What do you mean by spanning tree?
What are the applications of graph data structure?