题解 | #对称的二叉树#

对称的二叉树

http://www.nowcoder.com/practice/ff05d44dfdb04e1d83bdbdab320efbcb

/* function TreeNode(x) {
    this.val = x;
    this.left = null;
    this.right = null;
} */
function isSymmetrical(pRoot)
{
    // write code here
    if(pRoot === null){
      return true
    }
   return  isequel(pRoot.left,pRoot.right)
}
function isequel(left,right){
  if(left == null && right == null){
    return true
  }
  if(left === null || right === null ){
    return false
  }
  if(left.val !== right.val){
    return false
  }
 return  isequel(left.left,right.right) && isequel(left.right,right.left)
}
module.exports = {
    isSymmetrical : isSymmetrical
};
全部评论

相关推荐

拉丁是我干掉的:把上海理工大学改成北京理工大学。成功率增加200%
点赞 评论 收藏
分享
10-25 12:05
已编辑
湖南科技大学 Java
若梦难了:我有你这简历,已经大厂乱杀了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务