博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode: Same Tree
阅读量:5038 次
发布时间:2019-06-12

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

 

Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurally identical and the nodes have the same value.

 

1 public boolean isSameTree(TreeNode p, TreeNode q) {2     if(p == null && q == null) return true;3     if(p == null || q == null) return false;4     if(p.val == q.val)5         return isSameTree(p.left, q.left) && isSameTree(p.right, q.right);6     return false;7 }

 

转载于:https://www.cnblogs.com/EdwardLiu/p/3704783.html

你可能感兴趣的文章
依赖注入 批量注册
查看>>
《深入理解java虚拟机》笔记(3)实战:OutOfMemoryError异常
查看>>
ionic 调用restful API services时全局错误处理的实现 或自定义错误处理的实现
查看>>
面向对象程序设计
查看>>
新技能Get:如何利用HTTP技术提升网页的加载速度
查看>>
HDU 4126 Genghis Khan the Conqueror 最小生成树+树形dp
查看>>
c++链接mysql5.7
查看>>
Ubuntu安装UFW防火墙
查看>>
心有所向,逐之
查看>>
java test
查看>>
13.敏捷项目管理——超越范围、进度和成本笔记
查看>>
00.敏捷回顾——引言笔记
查看>>
3.2.3.1 匹配单个字符
查看>>
字符串逆序的方法
查看>>
该类型的 CollectionView 不支持从调度程序线程以外的线程对其 SourceCollection 进行的更改。...
查看>>
C50和机器学习
查看>>
Java中this用法总结
查看>>
Sharepoint学习笔记—习题系列--70-573习题解析 -(Q28-Q31)
查看>>
关于使用Timer定时监测网络是否ping通
查看>>
定时器setTimeout()的传参方法
查看>>