previous | start | next

BSTSet

The simple BSTSet will get by with a single data member, the root:

public class BSTSet
{
  private Node root;

  public BSTSet()
  {
    root = null;
  }
  ...
}


previous | start | next