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
How will you free the memory that is allocated at run time?
Can array store heterogeneous data?
How does a hashtable work?
Define splay tree?
How do you do binary search?
Explain linear linked implementation of Stack and Queue?
What is difference between list and set?
List the types of rotations available in splay tree?
Explain the uses of binary tree.
Differentiate bfs and dfs?
Which is the simplest file structure?
What is the best case time complexity of bubble sort?
What is hashing in cyber security?
Define non-linear data structures?
Can treeset contain null?