2024每日刷题(141)
Leetcode—543. 二叉树的直径
实现代码
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
int diameterOfBinaryTree(TreeNode* root) {
int ans = 0;
function<int(TreeNode*, int&)> dfs = [&](TreeNode* root, int& ans) {
if(root == nullptr) {
return 0;
}
int l = dfs(root->left, ans);
int r = dfs(root->right, ans);
ans = max(ans, l + r);
return 1 + max(l, r);
};
dfs(root, ans);
return ans;
}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!