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
Can you make an arraylist of arrays?
Define a Deque?
What is the best data structure and algorithm to implement cache?
What is collection sort?
What is the Difference between treemap and hashmap?
Advanced problems related to Data Structures were asked
Which is better bubble sort or selection sort?
What is breadth first tree?
What is mean by sorting?
Is char array null terminated?
What are the objectives of studying data structures?
What does enum do?
What are the different data structures?
How can I learn data structures?
How many sorting are there in data structure?