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

Question

Write a method called printLevel that accepts an integer parameter n and prints the values at level n from left to right, one per line. We will use the convention that the overall root is at level 1, its children are at level 2, and so on. If there are no values at the level, your method should produce no output. Your method should throw an IllegalArgumentException if it is passed a value for a level that is less than 1. For example, if a variable t refers to reference tree #2, then the call of t.printLevel(3); would produce the following output:

0

7

6

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


	public void printLevel(int n)
	{
		printLevel(overallRoot, n);
	}

	private void printLevel(IntTreeNode root, int level)
	{
		if(level < 0)
			throw new IllegalArgumentException();
	
		if(root == null)
			return;

		if(level == 1)
		{
			System.out.println(root.data);
		}
		else
		{
			printLevel(root.left, level - 1);
			printLevel(root.right, level - 1);
		}
	}

0 0

Discussions

Post the discussion to improve the above solution.