题目描述
操作给定的二叉树,将其变换为源二叉树的镜像。
思路
1.运用递归,结束条件为某节点的左子树和右子树都为空。
2.交换节点的左右子树
代码
/**
public class TreeNode {
int val = 0;
TreeNode left = null;
TreeNode right = null;
public TreeNode(int val) {
this.val = val;
}
}
*/
public class Solution {
public void swap(TreeNode node) {
TreeNode flag = node.left;
node.left = node.right;
node.right = flag;
}
public void Mirror(TreeNode root) {
if (root==null||root.left == null && root.right == null) {
return;
}
swap(root);
Mirror(root.left);
Mirror(root.right);
}
}```