두 나무가 똑같다고 판단을 하는 Same Tree 입니다.

1123 단어
제목은 리코드에서 유래했다.
간단한 귀속 문제.
제목: 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.
사고방식: 관건은 귀환의 끝 조건과 귀환해야 할 진위값에 있다.
코드:
/**
 * 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) {
        // IMPORTANT: Please reset any member data you declared, as
        // the same Solution instance will be reused for each test case.
        if(p == NULL && q == NULL)
            return true;
        else if( (p != NULL && q == NULL) || (p == NULL && q != NULL))
            return false;
        else
        {
            if(p->val == q->val)
                return isSameTree(p->left, q->left) && isSameTree(p->right, q->right);
            else
                return false;
        }
    }
};

좋은 웹페이지 즐겨찾기