Class BinaryTree<Item>

java.lang.Object
dsa.lab06.exercises.BinaryTree<Item>
Type Parameters:
Item - the item type
All Implemented Interfaces:
Container<Item>, Iterable<Item>

public class BinaryTree<Item> extends Object implements Container<Item>
A binary tree.

This implementation is designed for binary trees that are built bottom-up. It will work in other cases, just less efficiently.