首页 > 其他 > 详细

leetcode124 二叉树中的最大路径和

时间:2021-04-23 17:06:10      阅读:26      评论:0      收藏:0      [点我收藏+]

思路:

后序遍历。

实现:

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 8  *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 9  *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
10  * };
11  */
12 
13 class Solution
14 {
15 public:
16     int dfs(TreeNode* root, int& res)
17     {
18         int l = -1001, r = -1001;
19         if (root->left) l = dfs(root->left, res);
20         if (root->right) r = dfs(root->right, res);
21         res = max(res, max(l, r));
22         int tmp = root->val;
23         if (l > 0) tmp += l;
24         if (r > 0) tmp += r;
25         res = max(res, tmp);
26         return max(max(l, r), 0) + root->val;
27     }
28     int maxPathSum(TreeNode* root)
29     {
30         if (root == NULL) return 0;
31         int res = -1001;
32         dfs(root, res);
33         return res;
34     }
35 };

leetcode124 二叉树中的最大路径和

原文:https://www.cnblogs.com/wangyiming/p/14693118.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!