[LeetCode] Same Tree

1.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.

2.题目要求:判断两个二叉树是否相等。

3.方法:检查当前节点的左右节点是否相同,然后递归检查左子树和右子树。

4.代码:
/**

  • Definition for binary tree
  • 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) {
    // Start typing your C/C++ solution below
    // DO NOT write int main() function
    if (p == NULL && q == NULL)
    return true;
    else if (p == NULL || q == NULL)
    return false;
    return p->val == q->val && isSameTree(p->left, q->left)
    && isSameTree(p->right, q->right);
    }
    };
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容