剑指Offer第十八题:二叉树的镜像
二叉树的镜像
https://www.nowcoder.com/practice/564f4c26aa584921bc75623e48ca3011?tpId=13&tqId=11171&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking
题目描述
操作给定的二叉树,将其变换为源二叉树的镜像。
输入描述:
二叉树的镜像定义:源二叉树
8
/ \
6 10
/ \ / \
5 7 9 11
镜像二叉树
8
/ \
10 6
/ \ / \
11 9 7 5解答 :
public class Q_18 {
public void Mirror(TreeNode root) {
if(root!=null){
TreeNode left=root.left;
TreeNode right=root.right;
if(left!=null){
Mirror(left);
}
if(right!=null){
Mirror(right);
}
if(left!=null||right!=null){
root.left=right;
root.right=left;
}
}
}}
查看12道真题和解析