题目描述
操作给定的二叉树,将其变换为源二叉树的镜像。
输入描述:
二叉树的镜像定义:源二叉树
解题思路:递归的交换子树的左右结点
class Solution {
public:
void Mirror(TreeNode *pRoot) {
if (pRoot == nullptr)
return;
TreeNode* temp = pRoot->left;
pRoot->left=pRoot->right;
pRoot->right = temp;
if (pRoot->left != nullptr)
Mirror(pRoot->left);
if (pRoot->right != nullptr)
Mirror(pRoot->right);
}
};