SHARE
SPREAD
HELP

The Tradition of Sharing

Help your friends and juniors by posting answers to the questions that you know. Also post questions that are not available.


To start with, Sr2Jr’s first step is to reduce the expenses related to education. To achieve this goal Sr2Jr organized the textbook’s question and answers. Sr2Jr is community based and need your support to fill the question and answers. The question and answers posted will be available free of cost to all.

 

#
Authors:
Stuart Reges, Marty Stepp
Chapter:
Binary Trees
Exercise:
Exercises
Question:4 | ISBN:9780136091813 | Edition: 2

Question

Write a method called depthSum that returns the sum of the values stored in a binary tree of integers weighted by the depth of each value. The method should return the value at the root, plus 2 times the values stored at the next level of the tree, plus 3 times the values stored at the next level of the tree, and so on. For example, the depth sum of reference tree #1 would be computed as

(1 * 3) + (2 * (5 + 2)) + (3 * (1 + 4 + 6)) = 50 .

Add the above method to the IntTree class from this chapter. You may define additional private methods to implement your public method if necessary. Several problem descriptions refer to the following reference binary trees:

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

TextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbook

Answer

Implementation of depthSum method:


	public int depthSum()
	{
		return depthSum(overallRoot, 1);
	}

	private int depthSum(IntTreeNode root, int level)
	{
		if(root == null)
		{
			return 0;
		}
		else
		{
			return level * root.data
					+ depthSum(root.left, level + 1)
					+ depthSum(root.right, level + 1);
		}
	}

0 0

Discussions

Post the discussion to improve the above solution.