59、对称的二叉树
作者:互联网
59.请实现一个函数,用来判断一颗二叉树是不是对称的。注意,如果一个二叉树同此二叉树的镜像是同样
的,定义其为对称的。
思路:利用递归进行判断,若左子树的左孩子等于右子树的右孩子且左子树的右孩子等于右子树的左孩子,并
且左右子树节点的值相等,则是对称的。
public class Solution {
boolean isSymmetrical(TreeNode pRoot)
{
if(pRoot==null)
return true;
return isCommon(pRoot.left,pRoot.right);
}
public boolean isCommon(TreeNode leftNode,TreeNode rightNode)
{
if(leftNode == null && rightNode==null )
{
return true;
}
if(leftNode != null && rightNode!=null )
{
return leftNode.val==rightNode.val && isCommon(leftNode.left,rightNode.right) && isCommon(leftNode.right,rightNode.left);
}
return false;
}
}
标签:null,return,pRoot,59,rightNode,二叉树,对称,leftNode 来源: https://blog.csdn.net/lupa1521/article/details/89814515