博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Leetcode]101. Symmetric Tree
阅读量:6171 次
发布时间:2019-06-21

本文共 1112 字,大约阅读时间需要 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 思路:设两个游标p,q同时递归,递归的方向相反。即当p往左走时,q往右走。p往右走时,q往左走。 如果这棵树是镜像的,那么最后 p 和 q一定是同时到达null位置,并且在这个过程中,p,q节点的 值是相同的。
/** * Definition for a binary tree node. * public class TreeNode { *     int val; *     TreeNode left; *     TreeNode right; *     TreeNode(int x) { val = x; } * } */class Solution {    public boolean isSymmetric(TreeNode root) {        if (root==null)            return true;        return judge(root.left,root.right);    }    private  boolean judge(TreeNode p,TreeNode q){        if (p==null&&q==null)               //同时到达null位置,说明树是镜像的            return true;        if (p==null&&q!=null)            return false;        if (p!=null&&q==null)            return false;        if (p.val!=q.val)            return false;        return judge(p.left,q.right)&&judge(p.right,q.left);    }}

 

转载于:https://www.cnblogs.com/David-Lin/p/7783470.html

你可能感兴趣的文章
铁大好青年内部分组
查看>>
unity3D ——自带寻路Navmesh入门教程(一)(转)
查看>>
判断字符串是否为数字的函数
查看>>
[emuch.net]MatrixComputations(7-12)
查看>>
linux 命令 — 文件相关
查看>>
自己空闲的时候封装一下
查看>>
Datagard產生gap
查看>>
本机web开发环境的搭建--nginx篇
查看>>
rcnn 理解笔记
查看>>
问答项目---登陆验证码点击切换及异步验证验证码
查看>>
plist文件中iphone和ipad的应用图片设置
查看>>
搜集的一些资源网站链接
查看>>
struts2中类型转换器的使用
查看>>
11G Oracle RAC添加新表空间时数据文件误放置到本地文件系统的修正
查看>>
从91移动应用发展趋势报告看国内应用现状
查看>>
【ORACLE技术嘉年华PPT】MySQL压力测试经验
查看>>
Linux下汇编调试器GDB的使用
查看>>
css溢出机制探究
查看>>
vue中如何实现后台管理系统的权限控制
查看>>
关于angularjs过滤器的理解
查看>>