2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
maxPathSum.js 931 Bytes
一键复制 编辑 原始数据 按行查看 历史
royce li 提交于 2021-05-18 18:12 . 2021/5/18 每日一题加三道
/** 124
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @return {number}
*/
var maxPathSum = function(root) {
let ret=-Infinity;
function traverseDP(node){
let [l,r]=[0,0];
if(node.left){
l=traverseDP(node.left);
l= l>0 ? l:0;
}
if(node.right){
r=traverseDP(node.right);
r= r>0 ? r:0;
}
ret=Math.max(node.val+l+r,ret);
return Math.max(l,r)+node.val;
}
traverseDP(root);
return ret;
};
// 执行用时:
// 108 ms
// , 在所有 JavaScript 提交中击败了
// 60.22%
// 的用户
// 内存消耗:
// 47.1 MB
// , 在所有 JavaScript 提交中击败了
// 58.38%
// 的用户
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/royce-li/leetcode_royce.git
git@gitee.com:royce-li/leetcode_royce.git
royce-li
leetcode_royce
Leetcode_royce
master

搜索帮助