leetcode543. Diameter of Binary Tree

题目要求

Given a binary tree, you need to compute 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.java

Example:
Given a binary treenode

1
     / \
    2   3
   / \   
  4   5

Return 3, which is the length of the path [4,2,1,3] or [5,2,1,3].code

Note: The length of path between two nodes is represented by the number of edges between them.递归

二叉树的直径是指从一个叶节点到另外一个叶节点的最远距离,而这个距离是指两个节点之间的路径长,注意,这条路径不必定通过根节点。class

思路和代码

这里能够经过递归来完成计算,经过先递归的计算出左子树的最大高度,再递归的计算出右子树的最大高度,就能够得出当前节点能够构成的最长路径。须要将该值记录下来。再递归的返回该节点的最大高度给外层调用方运用。二叉树

int max = 0;  
public int diameterOfBinaryTree(TreeNode root) {  
    heightOfBinaryTree(root);  
    return max;  
}  
  
public int heightOfBinaryTree(TreeNode root) {  
    if (root == null) {  
        return 0;  
    }  
    int left = heightOfBinaryTree(root.left);  
    int right = heightOfBinaryTree(root.right);  
    max = Math.max(left + right + 1, max);  
    return Math.max(left, right) + 1;  
}
相关文章
相关标签/搜索