对称的二叉树

Posted 码上哈希

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对称的二叉树相关的知识,希望对你有一定的参考价值。

请实现一个函数,用来判断一颗二叉树是不是对称的。注意,如果一个二叉树同此二叉树的镜像是同样的,定义其为对称的。

/*
public class TreeNode {
    int val = 0;
    TreeNode left = null;
    TreeNode right = null;

    public TreeNode(int val) {
        this.val = val;

    }

}
*/
public class Solution {
    boolean isSymmetrical(TreeNode pRoot) {
        if (pRoot == null || (pRoot.left == null && pRoot.right == null))
            return true;
        
        return mirror(pRoot.left, pRoot.right);
    }
    
    boolean mirror(TreeNode node1, TreeNode node2) {
        if (node1 == null && node2 == null)
            return true;
        if (node1 != null && node2 != null) {
            return node1.val == node2.val && mirror(node1.left, node2.right) && mirror(node1.right, node2.left);
        }
        return false;
    }
    
    
}

 

以上是关于对称的二叉树的主要内容,如果未能解决你的问题,请参考以下文章

60.对称的二叉树

面试题28:对称的二叉树

剑指offer:对称的二叉树

剑指offer--28对称的二叉树

剑指offer-对称的二叉树

[剑指Offer]对称的二叉树