当前位置:网站首页>Leetcode-543. Diameter of Binary Tree
Leetcode-543. Diameter of Binary Tree
2022-07-07 07:30:00 【Eistert】
subject
Given the root of a binary tree, return the length of the diameter of the tree.
The diameter of a binary tree is the length of the longest path between any two nodes in a tree. This path may or may not pass through the root.
The length of a path between two nodes is represented by the number of edges between them.
Example 1:
Input: root = [1,2,3,4,5]
Output: 3
Explanation: 3 is the length of the path [4,2,1,3] or [5,2,1,3].
Example 2:
Input: root = [1,2]
Output: 1
Constraints:
The number of nodes in the tree is in the range [1, 104].
-100 <= Node.val <= 100
solution
Method 1 : Depth-first search
First, we know that the length of a path is the number of nodes that the path passes through minus one , So find the diameter ( That is, find the maximum value of the path length ) Equivalent to finding the maximum number of nodes the path passes through minus one .
Any path can be regarded as starting from a node , From the stitching of the paths traversed downward by his left son and right son .
As shown in the figure, we can know the path [9, 4, 2, 5, 7, 8] Can be seen as 2 As a starting point , The path traversed down from his left son [2, 4, 9] And the path traversed down from his right son [2, 5, 7, 8] Spliced to get .
Suppose we know that the left son of the node traverses down the maximum number of nodes LL ( That is, the depth of the subtree with the left son as the root ) And its right son traverse down the maximum number of nodes R ( That is, the depth of the subtree with the right son as the root ), Then the maximum number of nodes that the path starting from this node passes through is L+R+1 .
We remember the nodes node The maximum number of nodes passed by the path as the starting point is node, Then the diameter of the binary tree is all the nodes node Minus one... From the maximum .
The final algorithm flow is : We define a recursive function depth(node) Calculation node, Function returns the depth of the subtree whose node is the root .
First, recursively call the left son and the right son to find the depth of the subtree with their roots LL and RR , Then the depth of the subtree whose node is the root is max(L,R)+1
Of this node d node The value is
L+R+1
Recursively search each node and set a global variable ans Record d node The maximum of , Finally back to ans-1 Is the diameter of the tree .
Code
/** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode() {} * TreeNode(int val) { this.val = val; } * TreeNode(int val, TreeNode left, TreeNode right) { * this.val = val; * this.left = left; * this.right = right; * } * } */
class Solution {
int maxd = 0;
public int diameterOfBinaryTree(TreeNode root) {
getDepth(root);
return maxd;
}
public int getDepth(TreeNode node){
if(node == null){
return 0;
}
int L,R;
L = getDepth(node.left);
R = getDepth(node.right);
maxd = Math.max(L+R,maxd);
return Math.max(L,R) + 1;
}
}
Complexity analysis
Time complexity :O(N), among NN Is the number of nodes in the binary tree , That is, the time complexity of traversing a binary tree , Each node is accessed only once .
Spatial complexity :O(Height), among Height Is the height of the binary tree . Because the recursive function needs to allocate stack space for each layer of recursive function in the recursive process , So extra space is needed here, and that space depends on the depth of the recursion , The depth of recursion is obviously the height of binary tree , And each recursive call uses only constant variables , So the required space complexity is O(Height).
source
author :LeetCode-Solution
link :https://leetcode-cn.com/problems/diameter-of-binary-tree/solution/er-cha-shu-de-zhi-jing-by-leetcode-solution/
source : Power button (LeetCode)
The copyright belongs to the author . Commercial reprint please contact the author for authorization , Non-commercial reprint please indicate the source .
边栏推荐
- Dynamics CRM server deployment - restore database prompt: the database is in use
- Mutual conversion between InputStream, int, shot, long and byte arrays
- BGP experiment (1)
- sql中对集合进行非空校验
- After 95, the CV engineer posted the payroll and made up this. It's really fragrant
- Lm11 reconstruction of K-line and construction of timing trading strategy
- How to * * labelimg
- RuntimeError: CUDA error: CUBLAS_ STATUS_ ALLOC_ Failed when calling `cublascreate (handle) `problem solving
- My ideal software tester development status
- 修改Jupyter Notebook文件路径
猜你喜欢

IP address

机器人技术创新与实践旧版本大纲

Implementation of AVL tree

Communication between non parent and child components

考研失败,卷不进大厂,感觉没戏了

Convolutional neural network -- understanding of pooling

Reflection (II)

URP - shaders and materials - light shader lit

95后CV工程师晒出工资单,狠补了这个,真香...

Asynchronous components and suspend (in real development)
随机推荐
4、 High performance go language release optimization and landing practice youth training camp notes
Several important steps to light up the display
"Xiaodeng in operation and maintenance" meets the compliance requirements of gdpr
深度学习花书+机器学习西瓜书电子版我找到了
Special behavior of main function in import statement
选择商品属性弹框从底部弹出动画效果
[Linux] process control and parent-child processes
Abnova membrane protein lipoprotein technology and category display
Software acceptance test
FPGA course: application scenario of jesd204b (dry goods sharing)
Wechat applet full stack development practice Chapter 3 Introduction and use of APIs commonly used in wechat applet development -- 3.9 introduction to network interface (IX) extending the request3 met
Advanced level of C language (high level) pointer
Flexible layout (I)
$refs: get the element object or sub component instance in the component:
Non empty verification of collection in SQL
Robot technology innovation and practice old version outline
Stack Title: nesting depth of valid parentheses
Pass child component to parent component
Abnova immunohistochemical service solution
Kuboard无法发送邮件和钉钉告警问题解决