剑指offer--28对称的二叉树
Posted Anrys
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer--28对称的二叉树相关的知识,希望对你有一定的参考价值。
题目
代码
class Solution {
public boolean isSymmetric(TreeNode root) {
if (root == null) return true;
return helper(root.left, root.right);
}
public boolean helper(TreeNode root1, TreeNode root2) {
if (root1 == null && root2 == null) return true;
if (root1 == null || root2 == null) return false;
return root1.val == root2.val && helper(root1.left, root2.right) && helper(root1.right, root2.left);
}
}
结果
以上是关于剑指offer--28对称的二叉树的主要内容,如果未能解决你的问题,请参考以下文章