Compares value of Node to the parameter and returns:
-1 if the Node is less than the parameter,
0 if the Node is equal to the parameter, and
1 if the Node is greater than the parameter
Class LinkedList
A minimal LinkedList class composed of Node objects
for 15-111/200 Mastery Exam/Fall 2002
You need to add a method to this class as described
in the instructions.
Precondition: this list is sorted and the otherList
list is sorted in the order proscribed by the data item's
compareTo() method
Postcondition: this list has all the items from the original
list that were not contained in the parameter otherList
otherList is unchanged
Class Tree
This class define the Tree objects used within
the 15-111/200 Mastery Exam/Fall 2002
Students are not permitted to modify or augment
this class in any way.