Exemple #1
0
 public void highlightTree() {
   highlight();
   if (getLeft() != null) {
     getLeft().highlightTree();
   }
   if (getRight() != null) {
     getRight().highlightTree();
   }
 }