首页 > 其他 > 详细

Leetcode (5) Same Tree

时间:2015-04-11 17:59:34      阅读:221      评论:0      收藏:0      [点我收藏+]

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.

简而言之,判断两棵二叉树是否相等,这里可以通过递归去判断,题目比较简单明了直接上代码吧。需要注意的是在判断左子树不相等的时候就可以直接return false了,而无需等左右子树都遍历完再返回结果。这样可以节省时间。运行时间为3 ms.

/**
 * 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 && !q)
            return true;
        else if ( p && !q )
            return false;
        else if ( !p && q )
            return false;

        if (p->val != q->val)
            return false;
        else
        {
            if (!isSameTree(p->left, q->left))
                return false;
            if (!isSameTree(p->right, q->right))
                return false;
        }
        return true;
    }
};

Leetcode (5) Same Tree

原文:http://blog.csdn.net/angelazy/article/details/44996315

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!