/*---------------------------------

  BST_Node.java

  (P) 1998 Laurentiu Cristofor

  implementation
  of a binary search tree node

-----------------------------------*/

class BST_Node
{
  BST_Node left;
  BST_Node right;

  // what we store in node
  Object value;

  public BST_Node(Object val)
  {
    value = val;
    left  = null;
    right = null;
  }
}
