《leetCode》: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.

생각


이 문제는 비교적 간단하다. 앞의 반복적인 사고방식을 이용하여 두 나무의 각 노드를 판단하고 같지 않으면false로 돌아간다.그렇지 않으면 두 나무의 왼쪽 노드와 오른쪽 노드로 돌아가고, 두 나무의 모든 노드가 같을 때에true로 돌아간다
구현 코드는 다음과 같습니다.
/** * Definition for a binary tree node. * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */

bool isSameTree(struct TreeNode* p, struct TreeNode* q) {
    // 
    if(p==NULL&&q==NULL){// , true
        return true;
    }
    if((p==NULL&&q!=NULL)||(p!=NULL&&q==NULL)){
        return false;
    }
    // 
    if(p->val!=q->val){
        return false;
    }
    bool isSameInLeft=isSameTree( p->left, q->left);
    bool isSameInRigth=isSameTree( p->right, q->right);
    return isSameInLeft*isSameInRigth;
}

좋은 웹페이지 즐겨찾기