题解 | #树的子结构#

树的子结构

https://www.nowcoder.com/practice/6e196c44c7004d15b1610b9afca8bd88

/* function TreeNode(x) {
    this.val = x;
    this.left = null;
    this.right = null;
} */
function issame(pRoot1,pRoot2){
    if(pRoot2===null) return true
    else if(pRoot1===null) return false
    else if(pRoot1.val!==pRoot2.val) return false
    return issame(pRoot1.left,pRoot2.left)&& issame(pRoot1.right,pRoot2.right)
}


function HasSubtree(pRoot1, pRoot2)
{
    if(pRoot1===null||pRoot2===null) return false
    return issame(pRoot1,pRoot2)||HasSubtree(pRoot1.left,pRoot2)||HasSubtree(pRoot1.right,pRoot2)
}
module.exports = {
    HasSubtree : HasSubtree
};

全部评论

相关推荐

2024-12-21 18:48
西安邮电大学 C++
黑皮白袜臭脚体育生:按使用了什么技术解决了什么问题,优化了什么性能指标来写会更好另外宣传下自己的开源仿b站微服务项目,GitHub已经390star,牛客上有完整文档教程
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务