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:16 | ISBN:9780136091813 | Edition: 2

Question

Write a method called trim that accepts minimum and maximum integers as parameters and removes from the tree any elements that are not within that range inclusive. For this method you should assume that your tree is a binary search tree and that its elements are in valid binary search tree order. Your method should maintain the binary search tree ordering property of the tree. This property is important for solving this problem.

 

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 trim method:


	public void trim(int minimum, int maximum)
	{
		overallRoot = trim(overallRoot, minimum, maximum);
	}

	private IntTreeNode trim(IntTreeNode root, 
						int minimum, int maximum)
	{
		if(root == null)
		{
			return root;
		}
		
		if(root.data <= maximum && root.data >= minimum)
		{
			root.left = trim(root.left, minimum, maximum);
			root.right = trim(root.right, minimum, maximum);
			return root;
		}
		else if(root.data < minimum)
		{
			return trim(root.right, minimum, maximum);
		}
		else if(root.data > maximum)
		{
			return trim(root.left, minimum, maximum);
		}
		else
		{
			return root;
		}
	}

0 0

Discussions

Post the discussion to improve the above solution.