100. Same Tree (Tree)
Posted gopanama
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了100. Same Tree (Tree)相关的知识,希望对你有一定的参考价值。
注意null的时候要单独判断 因为不能用val
1 class Solution { 2 public boolean isSameTree(TreeNode p, TreeNode q) { 3 if(p == null && q == null) { 4 return true; 5 }else if (p== null && q != null) { 6 return false; 7 }else if(p != null && q == null) { 8 return false; 9 } 10 if(p.val != q.val) { 11 return false; 12 }else { 13 return(isSameTree(p.left, q.left) && isSameTree(p.right, q.right)); 14 } 15 16 } 17 }
以上是关于100. Same Tree (Tree)的主要内容,如果未能解决你的问题,请参考以下文章