判断两棵二叉树相同(递归)

题目描述

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) {
        if(p==NULL && q == NULL)
            return true;
        if(p == NULL && q != NULL)
            return false;
        if(p != NULL && q == NULL)
            return false;
        if(p->val != q->val)
            return false;
        return  isSameTree(p->left,q->left) && isSameTree(p->right,q->right); 
    }
};

你可能感兴趣的:(树)