LeetCode-543. Diameter of Binary Tree

网友投稿 558 2022-08-25

LeetCode-543. Diameter of Binary Tree

LeetCode-543. 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.

Example: Given a binary tree

1 / \ 2 3 / \ 4 5

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

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

题解:

注意返回值和答案的区别,返回值是当前路径左右最大值,答案是比较当前答案和左右最长路径和。

class Solution {public: int getHeight(TreeNode *root, int &res) { if (root != NULL) { int left = getHeight(root->left, res); int right = getHeight(root->right, res); res = max(res, left + right); return 1 + max(left, right); } return 0; } int diameterOfBinaryTree(TreeNode* root) { int res = 0; getHeight(root, res); return res; }};

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:固定CPU使用率
下一篇:LeetCode-1296. Divide Array in Sets of K Consecutive Numbers
相关文章

 发表评论

暂时没有评论,来抢沙发吧~