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
What are the pre-requisite for the collection to perform binary search?
Differentiate among cycle, path, and circuit?
How do you empty an arraylist?
How can someone display singly linked list from first to last?
What is the best case complexity of bubble sort?
What is adt and its advantages?
What is stable sorting?
List out the applications of a linked list?
List the data structures which are used in hierarchical data model.
Does arraylist contain duplicates?
What is bubble sort with example?
What are the difference between malloc() and calloc()?
What will you prefer for traversing through a list of elements between singly and doubly linked lists?
What is array in data structure with example?
How does quicksort partition work?