剑指offer--28对称的二叉树

Posted Anrys

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer--28对称的二叉树相关的知识,希望对你有一定的参考价值。

剑指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对称的二叉树的主要内容,如果未能解决你的问题,请参考以下文章

剑指Offer打卡28.对称的二叉树

剑指Offer打卡28.对称的二叉树

剑指 Offer 28. 对称的二叉树无取巧,易于理解!

剑指 Offer 28. 对称的二叉树无取巧,易于理解!

[LeetCode]剑指 Offer 28. 对称的二叉树

[LeetCode]剑指 Offer 28. 对称的二叉树