二叉树的镜像 左右树互换
Tree dfs(Tree T) { if (T == NULL)return NULL; Tree tmp = T->Left; T->Left = dfs(T->Right); T->Right = dfs(tmp); return T; }