Example #1
0
 public MyTNode <T> LCA(T a, T b)
 {
     if (root == null)
     {
         return(null);
     }
     return(root.SearchLCA(root, a, b));
 }