Write a method called completeToLevel that accepts an integer as a parameter and that adds nodes to

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 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.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: