Ejemplo n.º 1
0
 public DojoBinaryTree()
 {
     Data         = default;
     LeftSubTree  = default;
     RightSubTree = default;
 }
Ejemplo n.º 2
0
 public DojoHeap(DojoBinaryTree <T> binaryTree)
 {
     this.binaryTree = binaryTree;
 }
Ejemplo n.º 3
0
 public DojoTreeSet(DojoBinaryTree <T> binaryTree)
 {
     this.binaryTree = binaryTree;
 }