码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode (5) Same Tree

时间:2015-04-11 18:02:35      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:leetcode   c++   算法   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.

简而言之,判断两棵二叉树是否相等,这里可以通过递归去判断,题目比较简单明了直接上代码吧。需要注意的是在判断左子树不相等的时候就可以直接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

标签:leetcode   c++   算法   tree   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!