Important Notice:

Practice-It will be discontinued as of November 1st, 2024. After this date, the website will remain online for a transitional period, but login will be restricted to University of Washington NetID authentication. This marks the next phase towards the platform's full retirement. Thank you for your use and support of the application over the years.

If you are looking for an alternative, a similar tool, CodeStepByStep, was developed independently by the original author of Practice-It, and is available at codestepbystep.com**

logo Practice-It logo

sumLeaves

Language/Type: Java binary trees implementing IntTree
Related Links:
Author: Allison Obourn (on 2012/08/29)

Write a method sumLeaves to be added to the IntTree class shown below. Your method should return the sum of the data stored in all of the leaf nodes. Your method should not alter the tree. For example, the following tree has four leaves (nodes 1, 4, 8, and 9):

               +---+
               | 5 |
               +---+
              /     \
          +---+     +---+
          | 3 |     | 6 |
          +---+     +---+
         /     \         \
     +---+     +---+     +---+
     | 2 |     | 4 |     | 7 |
     +---+     +---+     +---+
    /                   /     \
+---+               +---+     +---+
| 1 |               | 8 |     | 9 |
+---+               +---+     +---+

A call on sumLeaves would return 22. If the tree is empty a call to your method should return 0.

You may define private helper methods to solve this problem, but otherwise you may not call any other methods of the tree class nor create any data structures such as arrays, lists, etc. You should not construct any new node objects or change the data of any nodes. For full credit, your solution must be recursive.

public class IntTree {
    private IntTreeNode overallRoot;
    ...
}
Type your solution here:


This is a partial class problem. Submit code that will become part of an existing Java class as described. You do not need to write the complete class, just the portion described in the problem.

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.