June 24, 2020: Reviewing my old Java code. This project uses four .java files to search through a binary tree. Abstract Data Type(ADT) is a data type, where only behavior is defined but not implementation. This means that the BinaryTreeADT.java contains method names and types followed with a β;β but no body(no brackets). Like this: public int size();Β In LinkedBinaryTree.java you will define all the methods inside BinaryTreeADT.java. So, that size method will be more like: public int size() { return count; }













