博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Leetcode 101]判断对称树 Symmetric Tree
阅读量:5164 次
发布时间:2019-06-13

本文共 907 字,大约阅读时间需要 3 分钟。

【题目】

Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).

For example, this binary tree [1,2,2,3,4,4,3] is symmetric:

1   / \  2   2 / \ / \3  4 4  3

 

But the following [1,2,2,null,3,null,3] is not:

1   / \  2   2   \   \   3    3

【思路】

类似于100判断树是否相同,根节点开始分左右两路比较,三种情况讨论。p和q=null、p或q=null、p和q的val相同迭代。

不同在于mirror正好相反, 对left和right比较,即是fun(p1.left,p2.right)&&fun(p1.right,p2.left)。

【代码】

 

class Solution {    public boolean isSymmetric(TreeNode root) {        if(root==null)            return true;        return fun(root.left,root.right);    }        public boolean fun(TreeNode p1,TreeNode p2) {        if(p1==null&&p2==null)            return true;        if(p1==null||p2==null)            return false;        if(p1.val==p2.val)            return fun(p1.left,p2.right)&&fun(p1.right,p2.left);        return false;    }}

 

转载于:https://www.cnblogs.com/inku/p/9936561.html

你可能感兴趣的文章
Oracle OCP 学习日志-使用转换函数和条件表达式-04
查看>>
C#:几种数据库的大数据批量插入(转)
查看>>
hdu 2196 computer 树状dp
查看>>
启用Servlet 3.0新特性——注解支持
查看>>
Python 类型的分类
查看>>
Stripies(POJ 1862 贪心)
查看>>
A Simple Math Problem(HDU 1757 构造矩阵)
查看>>
Eclipse使用External Tools定位class文件目录路径
查看>>
JS节流和防抖
查看>>
C#教程之打印和打印预览
查看>>
linux下解压命令大全
查看>>
C语言开发面试题
查看>>
VC++读写文件
查看>>
小程序-冒泡事件
查看>>
myEclipse快捷键
查看>>
数据结构练习(36)二叉树两结点的最低共同父结点
查看>>
WCF编程系列(一)初识WCF
查看>>
python远程控制电脑
查看>>
android之实现底部TabHost
查看>>
解除与设置计算机锁定
查看>>