270 likes | 442 Views
Fields. The definition of a binary tree pretty much requires the following fields:Object value;BinaryTree leftChild;BinaryTree rightChild;I also wanted to have this additional field:BinaryTree parent;Should these fields be public, private, or somewhere in between?. Maintaining control. It is t
E N D