package common;
/**
* @author : zhaoliang
* @program :newCoder
* @description : 树的镜像
* @create : 2020/11/26 19:20
*/
public class MirrorTree {
public class TreeNode{
int val =0;
TreeNode left;
TreeNode right;
TreeNode(int x){
val =x;
}
}
//操作给定的二叉树,将其变换为源二叉树的镜像。
public void Mirror(TreeNode root) {
if(root==null)return;
swap(root);
Mirror(root.left);
Mirror(root.right);
}
public void swap(TreeNode root){
TreeNode temp = root.left;
root.left = root.right;
root.right = temp;
}
}
常见算法-树的镜像
最新推荐文章于 2023-09-26 09:09:14 发布