Question: For this problem youll implement equals to determine if a tree is equal to another tree. For two trees to be equal they must have
For this problem youll implement equals to determine if a tree is equal to another tree. For two trees to be equal they must have the same values in the same positions.

Let's do another binary tree problem! For this problem you'll implement equals to determine if a tree is equal to another tree. For two trees to be equal they must have the same values in the same positions public class BinaryTree protected class Node f protected Object value; protected Node right; protected Node left; Node(object setValue) value setValue; protected Node root; // Remainder omitted for brevity As usual, create a public class called YourBinaryTree that extends BinaryTree, override public boolean equals (0bject other), and implement it as described above. If other is null or not a BinaryTree you should return false. As a reminder you can access protected BinaryTree instance variables in equals, including on other, which you will need to do to start the recursion on other
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
