100. Same Tree(Tree)

/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public boolean isSameTree(TreeNode p, TreeNode q) {
if(p==null|| q==null)
return p=q;
return(p.val==q.val && isSameTree(p.left,q.left) && isSameTree(p.right,q.right));
}
}

  

上一篇:Oracle中清除BIN$开头的垃圾表的解决办法 [转]


下一篇:Linux下编译安装Apache报APR not found错误的解决办法