Question: Write a method called completeToLevel that accepts an integer as a parameter and that adds nodes to a tree to complete the first levels. A
Write a method called completeToLevel that accepts an integer as a parameter and that adds nodes to a tree to complete the first levels. A level is complete if every possible node at that level is not null . We will use the convention that the overall root is at level 1, its children are at level 2, and so on. You should preserve any existing nodes in the tree. Any new nodes added to the tree should contain the value –1. 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 called t refers to reference tree #2 and you make the call of t.completeToLevel(4); , the tree should change to the following tree:


8. 0. 4 -1 9. 2.
Step by Step Solution
3.43 Rating (169 Votes )
There are 3 Steps involved in it
public void completeToLevel int target if target 1 throw new IllegalArgumentException overall ... View full answer
Get step-by-step solutions from verified subject matter experts
