当前位置:网站首页>Leetcode brush questions - 543. Diameter of binary trees, 617. Merging binary trees (recursive solution)
Leetcode brush questions - 543. Diameter of binary trees, 617. Merging binary trees (recursive solution)
2022-08-04 11:13:00 【lonelyMangoo】
递归
To solve these two problems, I would like to first understand the idea of recursion,There are three elements to solving recursive problems:
- 方法参数和返回值
- 方法参数:There are two cases for method parameters
- If it is related to the previous,Then you have to set it as a global variable
例如刷题中的538题,就会出问题,As a result, the value passed in is not the latest,下面的543the same question. - If it doesn't matter before,That is to say, it only works on the current layer,即局部的,It is passed through the method body
- If it is related to the previous,Then you have to set it as a global variable
- 返回值
When you need to use the return value,设置返回值,The following two questions will be required,
而上面提到的刷题中的538题,已经使用sumThe values I need are logged,No return value operation is required.另外,Generally judged with return value,有false直接返回了.
- 终止条件
It's where you need to be clear,When to stop and when to end. - 函数体
Operations on nodes and data
下面的题目,I will go through the above three steps to analyze
543. 二叉树的直径
543. 二叉树的直径
这道题翻译一下,Find the largest of the sum of the heights of the left and right subtrees of each node.
Why grab every node,Because I did it with hierarchical traversal at first,I thought it must start from the follow node,这个想法是错的,举个例子,The height of the root's right subtree is 1,The left subtree is two subtrees of the same height,高度都为10.
代码:
//It is written outside because this is a global variable,Find the global largest.
int ans;
public int diameterOfBinaryTree(TreeNode root) {
depth(root);
return ans;
}
//The return value is set because it is needed to find the height
private int depth(TreeNode root){
//结束条件
if(root == null){
return 0;
}
//方法体
// Recursively find the height of the left and right subtrees of the current node
int leftDepth = depth(root.left);
int rightDepth = depth(root.right);
ans = Math.max(ans,leftDepth+rightDepth);
//返回当前子树的高度
return Math.max(leftDepth,rightDepth)+1;
}

617. 合并二叉树
617. 合并二叉树
题目很好理解,思路,Pick up new ones
public TreeNode mergeTrees(TreeNode root1, TreeNode root2) {
return build(root1, root2);
}
//先序遍历.
//The return value is set because it is needed to build a tree
public static TreeNode build(TreeNode root1, TreeNode root2){
//终止条件
//叶子结点,直接返回
if(root1==null && root2==null) return null;
//And wool scallops,可冲
if(root1!=null && root2==null) return root1;
if(root1==null && root2!=null) return root2;
//The overlapping part of the left and right subtrees,需要叠加,
TreeNode node = new TreeNode(root1.val + root2.val);
//建树,Here you can see the return value that needs to be used.
node.left=build(root1.left, root2.left);
node.right=build(root1.right,root2.right);
return node;
}

边栏推荐
- God Space - the world's first Web3.0-based art agreement creative platform, broadening the boundaries of multi-art integration
- 入门MySql表的增删查改
- mae,mse,rmse分别利用sklearn和numpy实现
- Win11文件类型怎么改?Win11修改文件后缀的方法
- RL78 development environment
- The use of DDR3 (Naive) in Xilinx VIVADO (1) to create an IP core
- 【Idea系列】idea配置
- WPF 截图控件之画笔(八)「仿微信」
- Xilinx VIVADO 中 DDR3(Naive)的使用(2)读写设计
- MySQL不提供数组,只能做成表吗?
猜你喜欢

秒云成功入选《2022爱分析 · 银行数字化厂商全景报告》,智能运维能力获认可

Oracle中对临时表空间执行shrink操作

深度学习100例 —— 卷积神经网络(CNN)天气识别

8月活动|51CTO十七周年庆,发博文得茶具/笔记本/T恤等礼品!

ECCV 2022 | 清华&腾讯AI Lab提出REALY: 重新思考3D人脸重建的评估方法

Learn to use the basic interface of set and map

Use pytest hook function to realize automatic test result push enterprise WeChat

【Idea series】idea configuration

*iframe*

【Inspirational】The importance of review
随机推荐
Redis查询缓存
Mysql——》类型转换符binary
Jenkins使用手册(1) —— 软件安装
vscode插件设置——Golang开发环境配置
datax oracle to oracle incremental synchronization
使用json-server快速搭建本地数据接口
123
WPF 截图控件之画笔(八)「仿微信」
深度强化学习与APS的一些感想
小程序容器加快一体化在线政务服务平台建设
图文手把手教程--ESP32 OTA空中升级(VSCODE+IDF)
图文手把手教程--ESP32 MQTT对接EMQX本地服务器(VSCODE+ESP-IDF)
使用.NET简单实现一个Redis的高性能克隆版(二)
C语言*小白的探险历程
数据化管理洞悉零售及电子商务运营——零售密码
命令模式(Command)
Graphical Hands-on Tutorial--ESP32 OTA Over-the-Air Upgrade (VSCODE+IDF)
浅析深度学习在图像处理中的应用趋势及常见技巧
Advanced transcriptome analysis and R data visualization hot registration (2022.10)
What is the principle of thermal imaging temperature measurement?Do you know?