标签:style blog color java 使用 strong for art
题目:
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
.
题解:
递归求解。
取当前点和左右边加和,当前点的值中最大的作为本层返回值。并在全局维护一个max。使用数组,因为是引用类型。所以在递归过程中可以保存结果。
代码如下:
Binary Tree Maximum Path Sum leetcode java,布布扣,bubuko.com
Binary Tree Maximum Path Sum leetcode java
标签:style blog color java 使用 strong for art
原文地址:http://www.cnblogs.com/springfor/p/3886411.html