题目:
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.
思路:
Easy级别的题目,没什么可说的,直接用递归。时间复杂度是O(n),空间复杂度取决于树是否是平衡的,如果是平衡的,则为O(logn),否则最高可以达到O(n)。
代码:
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
bool isSameTree(TreeNode* p, TreeNode* q) {
if (p == NULL && q == NULL) {
return true;
}
else if (p == NULL) {
return false;
}
else if (q == NULL) {
return false;
}
else {
if (p->val != q->val) {
return false;
}
if (!isSameTree(p->left, q->left)) {
return false;
}
if (!isSameTree(p->right, q->right)) {
return false;
}
return true;
}
}
};
本文介绍了一个简单的方法来判断两棵二叉树是否等价。通过递归方式比较两个二叉树的结构和节点值,确保它们完全相同。代码实现简洁明了,易于理解。
352

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



