Beispiel #1
0
 public void connect(Tree tree)
 {
     tree.root().parent = this;
 }
Beispiel #2
0
 public bool isConnected(Tree tree)
 {
     return this.root() == tree.root();
 }
Beispiel #3
0
 public Tree()
 {
     parent = null;
 }