Question: 3. [5 marks] Suppose T is a binary tree that stores an integer key value in each node. Assume the following notation/operations on a binary
![3. [5 marks] Suppose T is a binary tree that stores](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f31c13b95ba_46766f31c131dd88.jpg)
3. [5 marks] Suppose T is a binary tree that stores an integer key value in each node. Assume the following notation/operations on a binary tree. the key T.key is the root node's integer key value . the left child T.left is T's left subtree, which is possibly an empty tree (or null) the right child T.right is T's right subtree, which is possibly an empty tree (or null) (a) Write an efficient algorithm FINDMAxPrODuCT(T) in pseudocode that returns the max- imum product of the key values on all possible paths in the tree T, which is passed as the input to the function. For the tree below, your algorithm should return a value of 240 (from the path with key values 5-2 3 4 x -2) -2 4 0 -2 You must include appropriate comments in your pseudocode. (b) Trace the output of your algorithm 'running' using the binary tree shown above. You may wish to include a table of node values and corresponding temp' values generated at each n ode as your algorithm proceeds
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
