Exemplo n.º 1
0
 public int CompareTo(node <T> other)
 {
     return(comparer.CompareTo(other.key));
 }
Exemplo n.º 2
0
 public bool equal(node <T> other)
 {
     return(comparer.CompareTo(other.key) == 0);
 }