The simple BSTSet will get by with a single data member, the root:
public class BSTSet { private Node root; public BSTSet() { root = null; } ... }