博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[leetcode-572-Subtree of Another Tree]
阅读量:6122 次
发布时间:2019-06-21

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

Given two non-empty binary trees s and t, check whether tree t has

exactly the same structure and node values with a subtree of s.
A subtree of s is a tree consists of a node in s and all of this node's descendants.
The tree s could also be considered as a subtree of itself.

Example 1:

Given tree s:

3    / \   4   5  / \ 1   2

Given tree t:

4   / \ 1   2

Return true, because t has the same structure and node values with a subtree of s.


 

Example 2:

Given tree s:

3    / \   4   5  / \ 1   2    /   0

Given tree t:

4  / \ 1   2

Return false.

思路:

首先定义一个函数,用来判断两颗二叉树是否相等。然后判断一颗二叉树t是否是二叉树s的子树,

仅需依次递归判断二叉树s的左子树和右子树是否与t相等即可。

 

bool isSameTree(TreeNode* s, TreeNode* t){    if(s == NULL &&  t== NULL) return true;    if( (s == NULL && t != NULL )|| (s != NULL&&t == NULL) || (s->val !=t->val)) return false;    bool left = isSameTree(s->left,t->left);    bool right = isSameTree(s->right,t->right);    return (left && right);}bool isSubtree(TreeNode* s, TreeNode* t){    bool res = false;    if(s!=NULL && t!= NULL)    {        if(t->val== s->val)      res = isSameTree(s,t);        if(!res) res = isSubtree(s->left,t);        if(!res) res = isSubtree(s->right,t);    }    return res;}

 

转载于:https://www.cnblogs.com/hellowooorld/p/6820227.html

你可能感兴趣的文章
vue组件开发练习--焦点图切换
查看>>
浅谈OSI七层模型
查看>>
Webpack 2 中一些常见的优化措施
查看>>
移动端响应式
查看>>
python实现牛顿法求解求解最小值(包括拟牛顿法)【最优化课程笔记】
查看>>
js中var、let、const的区别
查看>>
腾讯云加入LoRa联盟成为发起成员,加速推动物联网到智联网的进化
查看>>
从Python2到Python3:超百万行代码迁移实践
查看>>
Windows Server已可安装Docker,Azure开始支持Mesosphere
查看>>
简洁优雅地实现夜间模式
查看>>
react学习总结
查看>>
微软正式发布PowerShell Core 6.0
查看>>
Amazon发布新的会话管理器
查看>>
InfoQ趋势报告:DevOps 和云计算
查看>>
舍弃Python,为什么知乎选用Go重构推荐系统?
查看>>
在soapui上踩过的坑
查看>>
MySQL的字符集和字符编码笔记
查看>>
ntpd同步时间
查看>>
must implement java.io.Serializable hessian
查看>>
Microsoft Licenses Flash Lite for Windows Mobile Users
查看>>