BiTree InorderLastNode(BiTree T) {if (T) {while (T->rchild) {T = T->rchild;}}return T;}
找最右边的节点啦,循环赋值,直到没有右儿子