Microsoft interview question

Write code to solve a problem in Polish notation. e.g : 1 2 3 + / is 1/(2+3)

Interview Answers

Anonymous

29 Sept 2017

Stack is the best solution than tree

1

Anonymous

5 Sept 2015

Solve it using a stack

2

Anonymous

29 Sept 2017

Use binary tree