`
hcx2013
  • 浏览: 88825 次
社区版块
存档分类
最新评论

Binary Tree Maximum Path Sum

 
阅读更多

Given a binary tree, find the maximum path sum.

The path may start and end at any node in the tree.

For example:
Given the below binary tree,

       1
      / \
     2   3

 

Return 6.

 

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public int maxPathSum(TreeNode root) {
        int[] max = new int[1];
        max[0] = Integer.MIN_VALUE;
        solve(root, max);
        return max[0];
    }

	private int solve(TreeNode root, int[] max) {
		if (root == null) {
			return 0;
		}
		int left = solve(root.left, max);
		int right = solve(root.right, max);
		int ans = Math.max(root.val, Math.max(root.val+left, root.val+right));
		max[0] = Math.max(max[0], Math.max(ans, root.val+left+right));
		return ans;
	}
}

 

分享到:
评论

相关推荐

    python-leetcode题解之124-Binary-Tree-Maximum-Path-Sum

    python python_leetcode题解之124_Binary_Tree_Maximum_Path_Sum

    js-leetcode题解之124-binary-tree-maximum-path-sum.js

    javascript js_leetcode题解之124-binary-tree-maximum-path-sum.js

    常见算法题答案及解析

    31. Binary Tree Maximum Path Sum:二叉树中的最大路径和。 32. Binary Tree Upside Down:将二叉树进行上下翻转。 五、位运算 33. Single Number:只出现一次的数字,要求不使用额外空间。 34. Single Number II...

    Leetcode book刷题必备

    31. Binary Tree Maximum Path Sum:二叉树中的最大路径和。 32. Binary Tree Upside Down:将一个二叉树进行翻转。 【位操作】 33. Single Number:找出数组中唯一不出现一次的数字。 34. Single Number II:找出...

    Algorithm-LeetCode-Solution-From-GuaZiDou.zip

    再如,"Binary Tree Maximum Path Sum"问题,要求找到二叉树中从根节点到叶子节点的最大路径和。这个问题可以通过深度优先搜索或广度优先搜索结合动态规划来解决。 GuaZiDou的解决方案不仅包含了代码实现,通常还...

    leetcodetreenode-binary-tree-maximum-path-sum:二叉树最大路径和

    binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode() {} * TreeNode(int val) { this.val = val; } * TreeNode(int val, TreeNode left, TreeNode right) { *...

    LeetCode:用于测试来自https的问题

    "Binary Tree Maximum Path Sum"则可能涉及到深度优先搜索或广度优先搜索等树遍历策略。 此外,C#的特性如委托、事件、匿名函数、LINQ等也可能在LeetCode的C#解决方案中得到体现。例如,LINQ(Language Integrated ...

    LeetCode:收集LeetCode问题以使编码面试更加出色!

    另一个例子是“Binary Tree Maximum Path Sum”,需要你找到二叉树中具有最大路径和的路径,这涉及到递归和树的遍历。 解决LeetCode问题的过程中,你还可以学习如何编写清晰、简洁且易于理解的代码,这是面试官非常...

    Leetcode

    还有一些更高级的问题,如 "Binary Tree Maximum Path Sum",它涉及到树的深度优先搜索(DFS)或广度优先搜索(BFS),以及动态规划的策略。这类问题需要理解如何构建和遍历二叉树,并计算路径的最大和。 LeetCode...

    leetcode答案-leetcode-[removed]用javascript刷LeetCode

    例如,"Binary Tree Maximum Path Sum"(二叉树最大路径和)问题,我们可以使用DFS来计算每个节点到根节点的路径和,然后比较并返回最大值。 在"leetcode-javascript-master"这个压缩包中,很可能包含了作者使用...

    leetcode答案-LeetCode:LeetCode的回答

    3. "Binary Tree Maximum Path Sum"(二叉树的最大路径和):这是一道困难级别的问题,涉及到深度优先搜索(DFS)和回溯,寻找从根节点到叶子节点的最大路径和。 开源项目“LeetCode-master”很可能包含了这些问题...

    leetcode-answer-and-analysis(part).zip_图形图像处理_Java_

    7. **Binary Tree Maximum Path Sum** (二叉树中的最大路径和): 这是一道深度优先搜索(DFS)问题,寻找从根节点到任意叶子节点的最大路径和。在Java中,可以递归地访问每个节点并更新最大路径。 8. **Insertion ...

    LeetcodeSolutions:我收集的评论很好的leetcode问题解决方案

    而"Binary Tree Maximum Path Sum"(二叉树最大路径和)这类问题则需要结合深度优先搜索来找到最大路径。 在"Merge Intervals"(合并区间)问题中,我们需要对区间进行排序,然后利用双指针技术合并重叠部分,这...

    LeetCode:解决LeetCode的问题

    对于更复杂的题目,如"Binary Tree Maximum Path Sum"(二叉树的最大路径和),我们需要掌握深度优先搜索(DFS)或广度优先搜索(BFS)策略,同时理解和运用树的性质。在这个问题中,我们需要沿着一条路径递归地访问...

    leetcode-practice:解决问题的实践; 数据结构和算法审查

    又如,"Binary Tree Maximum Path Sum"需要找出二叉树中的最大路径和,这就需要用到深度优先搜索和递归。 此外,LeetCode还涵盖了字符串处理、位操作、数学逻辑等多方面的知识。通过不断地练习和挑战,我们可以深入...

    leetcode

    3. "Binary Tree Maximum Path Sum"(二叉树最大路径和):这题需要用到深度优先搜索,同时结合动态规划的思想,寻找一条路径使得经过的所有节点的路径和最大。 五、LeetCode对Java开发者的意义 1. 提升技能:...

    Leetcode题目+解析+思路+答案.pdf

    - **Binary Tree Path**:找到二叉树中和为目标值的路径。 - **Sum Root to Leaf Numbers**:计算二叉树所有从根到叶子节点的路径之和。 4. **动态规划(Dynamic Programming)**: - **Best Time To Buy and ...

    lrucacheleetcode-leetcode:leetcode

    Path to Get All Keys 深度优先搜索 996. Number of Squareful Arrays 拓扑排序 269. Alien Dictionary 单调栈 42. Trapping Rain Water 85. Maximal Rectangle Monotonic stack for 2d array 239. Sliding Window ...

    leetcode分类-LeetCode:力码

    Maximum Subarray Minimum Path Sum Unique Paths Unique Paths II Longest Palindromic Substring Interleaving String Triangle Distinct Subsequences Decode Ways Palindrome Partitioning II Maximal Rectangle...

Global site tag (gtag.js) - Google Analytics