LeetCode--isSameTree
Same Tree
Given two binary trees, write a function to check if they are equal or not.
Two binary trees are considered equal if they are structurally identical and the nodes have the same value.
这个题目比较简单,用递归: bool isSameTree(TreeNode *p, TreeNode *q) {
if(p==NULL && q==NULL)
{
return true;
}
else if((p!=NULL && q==NULL) || (p==NULL && q!=NULL))
{
return false;
}
else
{
return (p->val==q>val) && isSameTree(p->left, q->left) && isSameTree(p->right, q->right);
}
}
本文详细介绍了如何使用递归方法解决LeetCode中的二叉树相同问题,通过比较两棵树的节点值及结构来判断它们是否相等。
495

被折叠的 条评论
为什么被折叠?



