Esempio n. 1
0
 public bool isConnected(Tree tree)
 {
     return this.root() == tree.root();
 }
Esempio n. 2
0
 public void connect(Tree tree)
 {
     tree.root().parent = this;
 }