Convert the following infix expression to post fix notation
((a+2)*(b+4)) -1
Answer Posted / nips aka suman
a2+b4+*1-
Is This Answer Correct ? | 20 Yes | 2 No |
Post New Answer View All Answers
What is sorting in data structure?
What is stack and its operations?
What is time complexity of hashmap?
What is the difference between one and two dimensional?
What is a data structure node class?
What is a dequeue?
What is a singletonlist?
Define heap?
Is heap sort faster than quicksort?
Define 2-3 tree?
How many types of linked lists are there?
Which programming language is best for data structures?
What is binary tree give example?
Explain the types of linked lists.
an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].