Write a method called countEvenBranches that returns the number of branch nodes in a binary tree that
Question:
Write a method called countEvenBranches that returns the number of branch nodes in a binary tree that contain even numbers. A branch node has one or two children (i.e., it is not a leaf). For example, if a variable t refers to reference tree #2, then the call t.countEvenBranches() should return 3 because there are three branch nodes with even values ( 2, 8, and 6). Notice that leaf nodes with even values are not included (the nodes storing 0 and 4).
Fantastic news! We've Found the answer you've been seeking!
Step by Step Answer:
Related Book For
Building Java Programs A Back To Basics Approach
ISBN: 9780135471944
5th Edition
Authors: Stuart Reges, Marty Stepp
Question Posted: