Convert the following infix expression to post fix notation
((a+2)*(b+4)) -1
Answer Posted / ahan
( ( a + 2 ) * ( b + 4 ) ) - 1
\ / /
a2+ b4+ /
\ / /
/
a2+b4+* /
\ /
a2+b4+*1-
| Is This Answer Correct ? | 58 Yes | 2 No |
Post New Answer View All Answers
What are linked lists most commonly used for?
How would you check if a binary tree is BST or not ? Write a program.
Write the importance of hashing?
What happens if we try to insert duplicate key in hashmap?
Which sorting algorithms are in place?
When should structures be passed by values or by reference?
Why you need a data structure?
Can you make an arraylist of arrays?
Which is the parent class of hashmap class?
What is 2 dimensional linked list?
How can we reverse the order in the treemap?
What is a node in it?
How does a selection sort work for an array?
What is bubble sort technique?
Is int a data structure?