当前位置:网站首页>Sword finger offer 26 Substructure of tree
Sword finger offer 26 Substructure of tree
2022-07-02 17:12:00 【anieoo】
Original link : The finger of the sword Offer 26. The substructure of a tree
solution:
The code is mainly divided into two steps :
① adopt dfs Judge B Yes no A The subtree of the root node
② adopt isSubstructure Function for each A Traverse the nodes in
class Solution {
public:
bool isSubStructure(TreeNode* A, TreeNode* B) {
if(B == NULL || A == NULL) return false;
return dfs(A, B) || isSubStructure(A->left, B) || isSubStructure(A->right, B);
}
bool dfs(TreeNode *A, TreeNode *B) {
if(B == NULL)
return true;
if(A == NULL || A->val != B->val)
return false;
return dfs(A->left, B->left) && dfs(A->right, B->right);
}
};
边栏推荐
- 移动应用性能工具探索之路
- 超卓航科上市:募资9亿市值超60亿 成襄阳首家科创板企业
- 酒仙网IPO被终止:曾拟募资10亿 红杉与东方富海是股东
- Green bamboo biological sprint Hong Kong stocks: loss of more than 500million during the year, tiger medicine and Beijing Yizhuang are shareholders
- 绿竹生物冲刺港股:年期内亏损超5亿 泰格医药与北京亦庄是股东
- 剑指 Offer 27. 二叉树的镜像
- 有赞和腾讯云、阿里云一同摘得“中国企业云科技服务商50强”[通俗易懂]
- Changwan group rushed to Hong Kong stocks: the annual revenue was 289million, and Liu Hui had 53.46% voting rights
- 【Leetcode】14. 最长公共前缀
- Yolov5 practice: teach object detection by hand
猜你喜欢
Use the API port of the bridge of knowledge and action to provide resources for partners to access
Cell:清华程功组揭示皮肤菌群的一种气味挥发物促进黄病毒感染宿主吸引蚊虫...
Executive engine module of high performance data warehouse practice based on Impala
Go zero micro service practical series (VIII. How to handle tens of thousands of order requests per second)
Changwan group rushed to Hong Kong stocks: the annual revenue was 289million, and Liu Hui had 53.46% voting rights
Seven charts, learn to do valuable business analysis
john爆破出现Using default input encoding: UTF-8 Loaded 1 password hash (bcrypt [Blowfish 32/64 X3])
Just a coincidence? The mysterious technology of apple ios16 is even consistent with the products of Chinese enterprises five years ago!
PWM controlled steering gear
OpenHarmony如何启动远程设备的FA
随机推荐
Cell: Tsinghua Chenggong group revealed an odor of skin flora. Volatiles promote flavivirus to infect the host and attract mosquitoes
TCP congestion control details | 2 background
Serial port controls steering gear rotation
【Leetcode】13. 罗马数字转整数
Use the API port of the bridge of knowledge and action to provide resources for partners to access
DigiCert SSL证书支持中文域名申请吗?
七张图,学会做有价值的经营分析
The poor family once again gave birth to a noble son: Jiangxi poor county got the provincial number one, what did you do right?
绿竹生物冲刺港股:年期内亏损超5亿 泰格医药与北京亦庄是股东
Go zero micro service practical series (VIII. How to handle tens of thousands of order requests per second)
Tech talk activity preview | building intelligent visual products based on Amazon kVs
Exploration of mobile application performance tools
Yolov5 practice: teach object detection by hand
对接保时捷及3PL EDI案例
Interpretation of key parameters in MOSFET device manual
OpenPose的使用
How openharmony starts FA of remote devices
几行代码搞定RPC服务注册和发现
远程办公对我们的各方面影响心得 | 社区征文
PWM controlled steering gear