Carry out the three different traversals in the following tree:
In this exercise we consider trees corresponding to algebraic expressions. The idea is that each binary operator is represented by a node, whose children are the two operands. For example the expression 2 * (3 + 1/2)
would be represented via the tree in the figure.
3 + (1 / (4 + 5))