Exemple #1
0
 public bool isLeftNode(TDNode other)
 {
     return(other == null ? (p == null && s == null && t == null) : (leftNode.equals(other) ? true : false));
 }