Exemplo n.º 1
0
 public RBNode(int?FieldIn, BSTNode ParentIn, COLOR NodeColorIn)
     : base(FieldIn, ParentIn)
 {
     NodeColor = NodeColorIn;
 }
Exemplo n.º 2
0
 // Start by building a pre-defined tree
 public BST()
 {
     root = new BST.BSTNode(null, null);
 }
Exemplo n.º 3
0
 public RBNode(int?FieldIn, BSTNode ParentIn)
     : base(FieldIn, ParentIn)
 {
 }