Convert following infix expression to the prefix expression.
a - b + c * (d / e - (f + g))
Answer Posted / tadveer verma
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 ? | 13 Yes | 2 No |
Post New Answer View All Answers
When will we get ArrayStoreException?
Does arraylist have a tostring?
What is max heapify?
Explain about the different lists available in the collection?
How can I study data structures and algorithms?
Write a program using mergesort technique.
Which sorting algorithms are in place?
What are the Advantages and disadvantages of Array?
What is collection process?
Which interfaces are implemented by hashmap?
In what areas do data structures are applied?
What are the disadvantages array implementations of linked list?
For addition and deletion. Which one is most preferred: array list or linked list?
Does list maintain insertion order?
What is difference between arraylist and linkedlist?