给定一个二叉树,检查它是否是镜像对称的。
例如,二叉树 [1,2,2,3,4,4,3] 是对称的。
1
/ \
2 2
/ \ / \
3 4 4 3
但是下面这个 [1,2,2,null,3,null,3] 则不是镜像对称的:
1
/ \
2 2
\ \
3 3
说明:
如果你可以运用递归和迭代两种方法解决这个问题,会很加分。
思路: 1)root节点为空,返回true 。 2)root节点左右为镜像,为true,否则返回false 。 3)左右值是否相等,左左跟右右是否相等,左右跟右左是否相等
class Solution {
public boolean isSymmetric(TreeNode root) {
// if(root == null){
// return true;
// }else{
// return isSymmetric(root.left,root.right);
// }
return isSymmetric(root,root);
}
boolean isSymmetric(TreeNode left,TreeNode right){
if(left == null && right == null){
return true;
}
else if(left == null || right == null){
return false;
}
return left.val == right.val && isSymmetric(left.left,right.right) && isSymmetric(left.right,right.left);
}
}
网友评论