【编程题】对称的二叉树(java实现)

【编程题】对称的二叉树(java实现)

题目来源

剑指offer
https://www.nowcoder.com/practice/ff05d44dfdb04e1d83bdbdab320efbcb?tpId=13&tqId=11211&rp=4&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking

题目描述

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

题目解答

/*
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)
            return true;
        return isSymmetrical(pRoot.left,pRoot.right);    
    }
    boolean isSymmetrical(TreeNode root1,TreeNode root2){
        if(root1==null)
        {
            if(root2==null)
                return true;
            else
                return false;
        }
        if(root2==null)
            return false;
        if(root1.val!=root2.val)
            return false;
        return isSymmetrical(root1.left,root2.right)&&isSymmetrical(root1.right,root2.left);
    }
}

你可能感兴趣的:(编程打卡)