当前位置:网站首页>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 .
边栏推荐
- js小练习----分时提醒问候、表单密码显示隐藏效果、文本框焦点事件、关闭广告
- Mobx knowledge point collection case (quick start)
- C language (high-level) data storage + Practice
- 普通测试年薪15w,测试开发年薪30w+,二者差距在哪?
- RuntimeError: CUDA error: CUBLAS_ STATUS_ ALLOC_ Failed when calling `cublascreate (handle) `problem solving
- Build personal website based on flask
- Reflection (II)
- Introduction to abnova's in vitro mRNA transcription workflow and capping method
- sql中对集合进行非空校验
- IP address
猜你喜欢

Outlier detection technology of time series data

How does an enterprise manage data? Share the experience summary of four aspects of data governance

How can a 35 year old programmer build a technological moat?

Introduction to abnova's in vitro mRNA transcription workflow and capping method

The annual salary of general test is 15W, and the annual salary of test and development is 30w+. What is the difference between the two?

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

Pass child component to parent component

身边35岁程序员如何建立起技术护城河?

普通测试年薪15w,测试开发年薪30w+,二者差距在哪?

Detailed explanation of transform origin attribute
随机推荐
Circulating tumor cells - here comes abnova's solution
OOM(内存溢出)造成原因及解决方案
Outsourcing for four years, abandoned
Abnova membrane protein lipoprotein technology and category display
外包干了三年,废了...
Several important steps to light up the display
Bindingexception exception (error reporting) processing
Outlier detection technology of time series data
Communication between non parent and child components
Introduction to abnova's in vitro mRNA transcription workflow and capping method
Jesd204b clock network
About binary cannot express decimals accurately
抽絲剝繭C語言(高階)數據的儲存+練習
transform-origin属性详解
Le Service MySQL manque dans le service informatique
freeswitch拨打分机号源代码跟踪
A concurrent rule verification implementation
URP - shaders and materials - light shader lit
聊聊异步编程的 7 种实现方式
Role of virtual machine