Consider a nonempty binary tree with two types of nodes: min nodes and max nodes. Each node has an integer value initially associated with it. This tree is a mini max tree and has a value, which we...


Consider a nonempty binary tree with two types of nodes: min nodes and max nodes. Each node has an integer value initially associated with it. This tree is a mini max tree and has a value, which we define as follows:


• If the root is a min node, the value of the tree is equal to the minimum of


• The integer stored in the root


• The value of the left sub tree, but only if it is nonempty


• The value of the right sub tree, but only if it is nonempty


• If the root is a max node, the value of the tree is equal to the maximum of the above three values.


a. Compute the value of the mini max tree in Figure 15-21 . Each node is labeled with its initial value.


b. Design a general solution for representing and evaluating these trees.



May 03, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here