Evaluate the following prefix expression " ++ 26 + - 1324"
Answer Posted / narayan kunal
for evaluating the prefix expression first reverse the
prefix expression then sole like postfix expression
the reverse of given expression is
4231-+62++
then push 4,2,3,1 to stack ,now pop last two elements and
1-3=-2
now again push -2 to stack,now the element of stack is 4,2
,-2 again pop last two elements and do
-2+2=0
we know that if zero comes like symbol then we directly pop
this and proceed to next step
now the content of stack is 4 lets go to the next step
push 6 and 2 to the stack so now content of stack is 4,6,2
now
pop last two elements
6+2=8
push 8 to stack
content of stack is 4,8
again remove last two elements of elements and do
4+8=12
now all operator and operand ends up
so final answer is 12
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
How many types of searching are there in data structure?
What actions are performed when a function is called?
How to traverse data in a linked list in forward and backward direction, write the algorithm?
Define dynamic data structures?
Can I provide array size dynamically?
What are the different types of data structures explain briefly?
How does shell sort work?
What's the difference between a hashtable and a hashmap?
If you are given a choice to use either arraylist and linkedlist, which one would you use and why?
Explain linked list in short.
How efficient is binary search?
How do you declare An array of three char pointers
What is heap tree?
Is quicksort divide and conquer?
Provide an algorithm to reverse a linked list without using recursion.