链接:https://leetcode-cn.com/problems/er-cha-shu-de-jing-xiang-lcof/
代码:
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: TreeNode* mirrorTree(TreeNode* root) { if (!root) return root; mirrorTree(root->left); mirrorTree(root->right); swap(root->left, root->right); return root; } };