Beispiel #1
0
 public void AddBinaryTree(int e)
 {
     root = AddBinaryTree(e, root);
 }
Beispiel #2
0
 public void Add(int e)
 {
     root = Add(e, root);
 }
Beispiel #3
0
 public BNode(int val)
 {
     this.value = val;
     Left       = null;
     Right      = null;
 }
Beispiel #4
0
 public BSTree()
 {
     root = null;
 }
Beispiel #5
0
 public BNode()
 {
     Left  = null;
     Right = null;
 }