I have as an assignment to do the following:
Write, document (internally) and test a Java program to solve the following problem:
Implement the binary tree ADT using a linked representation in which each node contains the following:
- data
- reference/link to the left child
- reference/link to the right child
Assume that the data are integer values.
Implement the following operations (as described in Section 7.3 of the textbook):
- size
- isEmpty
- eplace
- root
- left
- right
- hasLeft
- hasRight
- isInternal
- isExternal
- isRoot
- insertLeft
- insertRight
- attach
- remove
and also the following traversals:
- preorder
- postorder
- inorder
I know how a binary tree works, and for the most part I have no problem doing this - but the problem I have is that I'm not allowed to have any variables in the node class other than the three given - that is, I cannot make a parent link. How can I check if a given node is the root of the tree if I can't have a link to a parent node?

