Question: For a given BST, write down an algorithm / code segment or complete method to return the sum of even values if the total

For a given BST, write down an algorithm / code segment or complete method to return the sum of even values if the total number of node containing odd values are greater than the number of nodes containing even values. Otherwise your method should return the sum of odd values in the BST. 5 8 15 16 19 20 25 30 40 34
Step by Step Solution
There are 3 Steps involved in it
Here is a Java solution that traverses the BST and counts the number of nodes containing even values ... View full answer
Get step-by-step solutions from verified subject matter experts
