[leetcode] Same Tree

jun·2021년 3월 30일
0
post-thumbnail

유의할점

p와 q 둘중하나 null인 경우 처리하는 부분

풀이

코드

C++

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution {
public:
    bool isSameTree(TreeNode* p, TreeNode* q) {
        if((p==NULL)^(q==NULL))
            return false;
        if(p==NULL&&q==NULL)
            return true;
        if(p->val==q->val)
            return isSameTree(p->left,q->left)&&isSameTree(p->right,q->right);
        return false;
    }
};
profile
Computer Science / Algorithm / Project / TIL

0개의 댓글