题解 | #对称的二叉树#

对称的二叉树

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

/*
 * function TreeNode(x) {
 *   this.val = x;
 *   this.left = null;
 *   this.right = null;
 * }
 */
/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 *
 * @param pRoot TreeNode类
 * @return bool布尔型
 */
function compare(a, b) {
    if (a === null && b === null) return true;
    if (a === null || b === null) return false;
    if (a.val!==b.val) return false;
    return compare(a.left,b.right)&&compare(a.right,b.left)
}

function isSymmetrical(pRoot) {
    if (pRoot === null) return true;
    return compare(pRoot.left,pRoot.right)
}
module.exports = {
    isSymmetrical: isSymmetrical,
};

全部评论

相关推荐

有趣的牛油果开挂了:最近这个阶段收到些杂七杂八的短信是真的烦
点赞 评论 收藏
分享
微风不断:兄弟,你把四旋翼都做出来了那个挺难的吧
点赞 评论 收藏
分享
11-27 17:35
已编辑
蚌埠坦克学院 C++
深信服 后台开发 n×12
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务