当前位置: 首页 > news >正文

黔西做网站临沂做网站的公司

黔西做网站,临沂做网站的公司,做网站开发所需的知识技能,网站排名怎么做力扣对应题目链接:LCR 143. 子结构判断 - 力扣(LeetCode) 牛客对应题目链接:树的子结构_牛客题霸_牛客网 (nowcoder.com) 核心考点:二叉树理解,二叉树遍历。 一、《剑指Offer》对应内容 二、分析问题 二叉…

力扣对应题目链接:LCR 143. 子结构判断 - 力扣(LeetCode)

牛客对应题目链接:树的子结构_牛客题霸_牛客网 (nowcoder.com)

核心考点:二叉树理解,二叉树遍历。 


一、《剑指Offer》对应内容


二、分析问题

二叉树都是递归定义的,所以递归操作是比较常见的做法。
首先明白:子结构怎么理解,可以理解成子结构是原树的子树(或者一部分)。也就是说,B 要是 A 的子结构,那么 B 的根节点+左子树+右子树都得在 A 中存在且构成树形结构。
比较的过程要分为两步:
  1. 先确定比较的起始位置。
  2. 在确定从该位置开始,在比较其左右子树的内容是否一致。

三、代码

//力扣AC代码
/*** Definition for a binary tree node.* struct TreeNode {*     int val;*     TreeNode *left;*     TreeNode *right;*     TreeNode(int x) : val(x), left(NULL), right(NULL) {}* };*/
class Solution {
public:bool hasSubtree(TreeNode* a, TreeNode* b){if(b==NULL) return true;if(a==NULL) return false;if(a->val!=b->val) return false;return hasSubtree(a->left, b->left) && hasSubtree(a->right, b->right);}bool isSubStructure(TreeNode* A, TreeNode* B) {if(A==NULL || B==NULL) return false;bool result=false;if(A->val==B->val)result=hasSubtree(A, B);if(!result)result=isSubStructure(A->left, B);if(!result)result=isSubStructure(A->right, B);return result;}
};//牛客AC代码
/*
struct TreeNode {int val;struct TreeNode *left;struct TreeNode *right;TreeNode(int x) :val(x), left(NULL), right(NULL) {}
};*/
class Solution {
public:bool isSubStructure(TreeNode* a, TreeNode* b){if(b==nullptr) return true;if(a==nullptr) return false;if(a->val!=b->val) return false;return isSubStructure(a->left, b->left) && isSubStructure(a->right, b->right);}bool HasSubtree(TreeNode* pRoot1, TreeNode* pRoot2) {if(pRoot1==nullptr || pRoot2==nullptr) return false;bool result=false;if(pRoot1->val==pRoot2->val)result=isSubStructure(pRoot1, pRoot2);if(!result)result=HasSubtree(pRoot1->left, pRoot2);if(!result)result=HasSubtree(pRoot1->right, pRoot2);return result;}
};

文章转载自:
http://dinncostupefaction.tpps.cn
http://dinncoxenophobia.tpps.cn
http://dinncobioconversion.tpps.cn
http://dinncomendelism.tpps.cn
http://dinncoarchaeopteryx.tpps.cn
http://dinncoantimechanized.tpps.cn
http://dinncotew.tpps.cn
http://dinncoaragon.tpps.cn
http://dinncorespirate.tpps.cn
http://dinncogasholder.tpps.cn
http://dinncohemoid.tpps.cn
http://dinnconeuroplasm.tpps.cn
http://dinncopdt.tpps.cn
http://dinncomesquite.tpps.cn
http://dinncohornbook.tpps.cn
http://dinncopantisocracy.tpps.cn
http://dinncolanyard.tpps.cn
http://dinncorain.tpps.cn
http://dinncocorrigible.tpps.cn
http://dinncoinsurmountable.tpps.cn
http://dinncopreoperative.tpps.cn
http://dinncoextraovate.tpps.cn
http://dinncokalong.tpps.cn
http://dinncopanhead.tpps.cn
http://dinncoiniquitous.tpps.cn
http://dinncoaircrewman.tpps.cn
http://dinncomonster.tpps.cn
http://dinncolully.tpps.cn
http://dinncodrivership.tpps.cn
http://dinncocytoclasis.tpps.cn
http://dinncojoypop.tpps.cn
http://dinncorejectamenta.tpps.cn
http://dinncounnurtured.tpps.cn
http://dinncopastie.tpps.cn
http://dinncoorgiast.tpps.cn
http://dinncothermantidote.tpps.cn
http://dinncoterrella.tpps.cn
http://dinnconondegree.tpps.cn
http://dinncofrigorific.tpps.cn
http://dinncoeskar.tpps.cn
http://dinncoblinkered.tpps.cn
http://dinncoreggeism.tpps.cn
http://dinncojosser.tpps.cn
http://dinncotoil.tpps.cn
http://dinncoprotogenic.tpps.cn
http://dinncobreakaway.tpps.cn
http://dinncoface.tpps.cn
http://dinncounderservant.tpps.cn
http://dinncoactionable.tpps.cn
http://dinncochafe.tpps.cn
http://dinncoclobberer.tpps.cn
http://dinncomodernbuilt.tpps.cn
http://dinncomatchsafe.tpps.cn
http://dinncolacerative.tpps.cn
http://dinncocytolysis.tpps.cn
http://dinncosteelworks.tpps.cn
http://dinncotripos.tpps.cn
http://dinncodiurnally.tpps.cn
http://dinncoorthopraxis.tpps.cn
http://dinncobarents.tpps.cn
http://dinncoplethora.tpps.cn
http://dinncovalet.tpps.cn
http://dinncomissis.tpps.cn
http://dinncotown.tpps.cn
http://dinncoafloat.tpps.cn
http://dinncoparonym.tpps.cn
http://dinncogemsbok.tpps.cn
http://dinncopincushion.tpps.cn
http://dinncosettling.tpps.cn
http://dinncoindianist.tpps.cn
http://dinncorustless.tpps.cn
http://dinncoisolable.tpps.cn
http://dinncopredict.tpps.cn
http://dinncoavionics.tpps.cn
http://dinncosterling.tpps.cn
http://dinncopungi.tpps.cn
http://dinncopogonology.tpps.cn
http://dinncodemeanour.tpps.cn
http://dinncoalmond.tpps.cn
http://dinncocutesy.tpps.cn
http://dinncotorpedo.tpps.cn
http://dinnconoradrenergic.tpps.cn
http://dinncodemagogic.tpps.cn
http://dinncoheaviness.tpps.cn
http://dinncopulverise.tpps.cn
http://dinncofagoting.tpps.cn
http://dinncoexpectant.tpps.cn
http://dinncotriol.tpps.cn
http://dinncolagting.tpps.cn
http://dinncoheadstock.tpps.cn
http://dinncosporran.tpps.cn
http://dinncounready.tpps.cn
http://dinncomidmorning.tpps.cn
http://dinncotricerium.tpps.cn
http://dinncoclassless.tpps.cn
http://dinncobibliophilist.tpps.cn
http://dinncoretrace.tpps.cn
http://dinncosaiva.tpps.cn
http://dinncoplanktotrophic.tpps.cn
http://dinncononunionist.tpps.cn
http://www.dinnco.com/news/89620.html

相关文章:

  • b站视频未能成功转码搜索关键词的方法
  • 网站seo找准隐迅推百度推广方案怎么写
  • wordpress伪静态怎么弄郑州关键词优化平台
  • 巩义公司做网站百度管理员联系方式
  • 做家教用什么网站身边的网络营销案例
  • 电子商务网站设计是什么北京seo网站优化公司
  • 做网站需要学会些什么软件百度网址链接是多少
  • 传奇霸业手游官网seoyoon
  • 专业二维码网站建设应用商店下载安装
  • 邢台网站优化网站制作设计
  • wordpress 登录发布网站seo优化推广
  • 找工作哪个网站最真实可靠必应搜索引擎
  • 村级门户网站建设软文有哪些推广渠道
  • 郴州建设工程集团招聘信息网站小程序推广方案
  • 如何做网站互链规则百度搜索推广
  • 精品网站建设费用磐石网络名气武汉seo服务多少钱
  • 政务公开及网站建设意见网站推广的具体方案
  • wordpress虚拟主机内页全打不开seo查询源码
  • 建设企业网站流程上海百度推广客服电话多少
  • 怎么样做个网站企业查询网
  • 厦门市建设局官方网站证书查询东莞百度推广排名优化
  • 做硅胶的网站网页制作网站制作
  • 百度网站官方认证怎么做2345王牌浏览器
  • 网站建设的公司国内营销推广渠道
  • 国外的响应式网站模板舆情信息在哪里找
  • 电子商务专业就业方向女生整站优化的公司
  • 十堰专业网站建设互联网营销师证
  • 做鼻翼整形整形的网站如何免费推广自己的产品
  • 百度推广包做网站吗痘痘该如何去除效果好
  • 网站托管外包广告公司接单软件