【剑指offer】面试题27:二叉树的镜像(Java)

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

例如输入:

     4
   /   \
  2     7
 / \   / \
1   3 6   9
镜像输出:

     4
   /   \
  7     2
 / \   / \
9   6 3   1

示例 1:

输入:root = [4,2,7,1,3,6,9]
输出:[4,7,2,9,6,3,1]
 

限制:

0 <= 节点个数 <= 1000

代码:

/**

扫描二维码关注公众号,回复: 9553152 查看本文章

 * Definition for a binary tree node.

 * public class TreeNode {

 *     int val;

 *     TreeNode left;

 *     TreeNode right;

 *     TreeNode(int x) { val = x; }

 * }

 */

class Solution {

    public TreeNode mirrorTree(TreeNode root) {

        if(root==null)

        {

            return root;

        }

        if(root.left==null&&root.right==null)

        {

            return root;

        }

        

        find(root);

        return root;

    }

    public void find(TreeNode p)

    {

        if(p==null)

        {

            return;

        }

        if(p.left==null&&p.right==null)

        {

            return;

        }

        TreeNode t = p.left;

        p.left = p.right;

        p.right = t;

        find(p.left);

        find(p.right);

    }

}

发布了275 篇原创文章 · 获赞 9 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/hx1043116928/article/details/104631474