Exemple #1
0
 internal RBNode(RBTree.Color color, IComparable item, RBNode p, RBNode left, RBNode right)
 {
     this.color=color;
     this.p=p;
     this.left=left;
     this.right=right;
     this.item=item;
 }
Exemple #2
0
 internal RBNode(RBTree.Color color, IComparable item, RBNode p, RBNode left, RBNode right)
 {
     this.color = color;
     this.p     = p;
     this.left  = left;
     this.right = right;
     this.item  = item;
 }
Exemple #3
0
 internal RBNode(RBTree.Color color)
 {
     this.color=color;
 }
Exemple #4
0
 internal RBNode(RBTree.Color color)
 {
     this.color = color;
 }