剑指offer系列-27 二叉树的镜像

class Solution {
public:
    TreeNode* mirrorTree(TreeNode* root) {
        if(root==nullptr) return nullptr;
        TreeNode* left=mirrorTree(root->left);
        TreeNode* right=mirrorTree(root->right);
        root->left=right;
        root->right=left;
        return root;
    }
};

 

你可能感兴趣的:(剑指offer,C++)