首页 > 其他 > 详细

100. Same Tree

时间:2016-09-10 06:42:57      阅读:273      评论:0      收藏:0      [点我收藏+]

思路:递归。

null也是tree。

null tree

(definition)

Definition: (1) A tree which is empty. (2) A tree whose leaf nodes all have a null value.

 https://xlinux.nist.gov/dads/HTML/nulltree.html

 

public class Solution {
    public boolean isSameTree(TreeNode p, TreeNode q) {
        if(p==null&&q==null)
        {
            return true;
        }
        if(p==null||q==null)
        {
            return false;
        }
        if(p.val==q.val)
        {
            return isSameTree(p.left,q.left)&&isSameTree(p.right,q.right);
        }
        else
        {
            return false;
        }
        
    }
}

 

100. Same Tree

原文:http://www.cnblogs.com/Machelsky/p/5858590.html

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