剑指offer - 二叉树的镜像

题目

https://www.nowcoder.com/questionTerminal/564f4c26aa584921bc75623e48ca3011

题意

操作给定的二叉树,将其变换为源二叉树的镜像。

题解

递归地将左右儿子交换即可。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
struct TreeNode {
int val;
struct TreeNode *left;
struct TreeNode *right;
TreeNode(int x) :
val(x), left(NULL), right(NULL) {
}
};
class Solution {
public:
void Mirror(TreeNode *pRoot) {
if(pRoot==NULL) return ;
swap(pRoot->left,pRoot->right);
Mirror(pRoot->left);
Mirror(pRoot->right);
}
};