// Binary search tree public MovieCollection() { node = null; }
private BST right; // reference to its right child public BST(Movie item) { this.item = item; left = null; right = null; }