剑指Offer+第19题+二叉树的镜像+java

题目:请完成一个函数,输入一个二叉树,该函数输出它的镜像。

如下图所示:两棵互为镜像的二叉树:

仔细分析这两棵树的特点,看看能不能总结出求镜像的步骤。这两棵树的根节点相同,但它们的左右两个子节点交换了位置。因此我们不妨先在树中交换根节点的两个子节点,就得到了下面的第二颗树:

 交换根节点的两个子节点之后,我们注意到值为10,6的结点的子节点仍然保持不变,因此我们还需要交换这两个结点的左右子节点。交换之后的结果分别为第三课树和第四颗树。做完这两次交换之后,我们已经遍历完所有的非叶子结点。此时交换之后的树刚好就是原始树的镜像。

总结上面的过程,我们得出求一棵树的镜像的过程:我们先前序遍历这棵树的每个结点,如果遍历的结点有子节点,就交换它的两个子节点,当交换完所有的非叶子结点的左右子节点之后,我们就得到了树的镜像。
代码:

import java.util.Stack;

public class Offer19 {
	
	public static class BinaryTreeNode{
		int value;
		BinaryTreeNode left;
		BinaryTreeNode right;
		
		BinaryTreeNode(){}
		
		BinaryTreeNode(int value){// 只有一个节点时,即:只有根节点
			this.value = value;
		}
		
		public int getValue(){
			return value;
		}
		
		public BinaryTreeNode getLeft(){
			return left;
		}
		
		public BinaryTreeNode getRight(){
			return right;
		}
	}
	
	//递归实现
	public void mirrorRecursively(BinaryTreeNode root){
		if(root == null)
			return;
		if(root.left == null && root.right == null)
			return;
		
		// 交换当前节点的左右子节点,注意,要加.value.不然最后测试的不好显示输出结果
		BinaryTreeNode tempNode = root.left;// 交换当前节点的左右子节点
		root.left = root.right;
		root.right = tempNode;
		
		// 左子树递归
		if(root.left != null)
			mirrorRecursively(root.left);
		
		// 右子树递归
		if(root.right != null)
			mirrorRecursively(root.right);
	}
	
	//为了使方便测试,这里封装了一个设置指定根节点的左孩子和右孩子节点的方法:
	public static void setSubTreeNode(BinaryTreeNode root, BinaryTreeNode left, BinaryTreeNode right){
		if(root == null)
			return;
		root.left = left;
		root.right = right;
	}
	
	//用循环实现
	public void mirror(BinaryTreeNode root){
		if(root == null)
			return;
		
		Stack<BinaryTreeNode> stack = new Stack<>();
		stack.push(root);
		while(!stack.isEmpty()){
			BinaryTreeNode currentNode = stack.pop();//将根元素出栈 交换根元素的左右子树
			if(currentNode.left != null || currentNode.right != null){//若左右孩子不为空则交换左右孩子
				BinaryTreeNode tempNode = currentNode.left;
				currentNode.left = currentNode.right;
				currentNode.right = tempNode;
			}
			
			//将根元素的左右孩子压入栈中 
			if(currentNode.left != null)
				stack.push(currentNode.left);
			if(currentNode.right != null)
				stack.push(currentNode.right);
		}
	}
	
	//前序递归实现输出
		public void preOrderRe(BinaryTreeNode root){
			//System.out.println(biTree.value);
			if(root != null){
				System.out.print(root.getValue()+", ");
				preOrderRe(root.getLeft());
				preOrderRe(root.getRight());
			}
		}
	
	
	
	public static void main(String[] args) {

		Offer19 of19 = new Offer19();
		//功能测试
		 // 01.普通二叉树
	    //                  8                      8 
	    //              /       \                /    \
	    //             6         10            10      6
	    //           /   \     /   \          /  \    /  \
	    //          5     7   9    11        11  9    7   5
		BinaryTreeNode nodeA11 = new BinaryTreeNode(8);
		BinaryTreeNode nodeA12 = new BinaryTreeNode(6);
		BinaryTreeNode nodeA13 = new BinaryTreeNode(10);
		BinaryTreeNode nodeA14 = new BinaryTreeNode(5);
		BinaryTreeNode nodeA15 = new BinaryTreeNode(7);
		BinaryTreeNode nodeA16 = new BinaryTreeNode(9);
		BinaryTreeNode nodeA17 = new BinaryTreeNode(11);
		
		setSubTreeNode(nodeA11, nodeA12, nodeA13);
		setSubTreeNode(nodeA12, nodeA14, nodeA15);
		setSubTreeNode(nodeA13, nodeA16, nodeA17);
	    
		System.out.println("情况1,镜像为: ");
		of19.mirrorRecursively(nodeA11);
		of19.mirror(nodeA11);
		of19.preOrderRe(nodeA11);
		System.out.println();
		
		//功能测试
		 // 02.二叉树的所有节点都没有左子树
	    //                  8                      8 
	    //                      \                /     
	    //                       10            10      
	    //                         \          /  
	    //                         11        11 
		BinaryTreeNode nodeA21 = new BinaryTreeNode(8);
		BinaryTreeNode nodeA22 = new BinaryTreeNode(10);
		BinaryTreeNode nodeA23 = new BinaryTreeNode(11);
		
		nodeA21.right = nodeA22;
		nodeA22.right = nodeA23;
		
		System.out.println("情况2,镜像为: ");
		of19.mirrorRecursively(nodeA21);
		of19.preOrderRe(nodeA21);
		of19.mirror(nodeA21);
		System.out.println();
		
		//功能测试
		 // 03.二叉树的所有节点都没有右子树
	    //                  8                      8 
	    //              /                             \
	    //             6                               6
	    //           /                                   \
	    //          5                                    5
		BinaryTreeNode nodeA31 = new BinaryTreeNode(8);
		BinaryTreeNode nodeA32 = new BinaryTreeNode(6);
		BinaryTreeNode nodeA33 = new BinaryTreeNode(5);
		
		nodeA31.left = nodeA32;
		nodeA32.left = nodeA33;
		
		System.out.println("情况3,镜像为: ");
		of19.mirrorRecursively(nodeA31);
		of19.preOrderRe(nodeA31);
		of19.mirror(nodeA31);
		System.out.println();
		
		//功能测试
		 // 04.只有一个节点的二叉树
	    //                  8                      8 
		BinaryTreeNode nodeA41 = new BinaryTreeNode(8);
		System.out.println("情况4,镜像为: ");
		of19.mirrorRecursively(nodeA41);
		of19.preOrderRe(nodeA41);
		of19.mirror(nodeA41);
		System.out.println();
		
		//特殊输入测试
		//二叉树的根节点为NULL指针
		System.out.println("情况5,镜像为: ");
		of19.mirrorRecursively(null);
		of19.preOrderRe(null);
		of19.mirror(null);
		System.out.println();

	}
}

运行结果: 

情况1,镜像为: 
8, 10, 11, 9, 6, 7, 5, 
情况2,镜像为: 
8, 10, 11, 
情况3,镜像为: 
8, 6, 5, 
情况4,镜像为: 
8, 
情况5,镜像为: 

源码github  https://github.com/HuangNobody/JianZhi_Offer

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值