博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(算法)Binary Tree Max Path Sum
阅读量:6107 次
发布时间:2019-06-21

本文共 767 字,大约阅读时间需要 2 分钟。

题目:

Given a binary tree, find the maximum path sum.

For this problem, a path is defined as any sequence of nodes from some starting node to any node in the tree along the parent-child connections. The path does not need to go through the root.

For example:

Given the below binary tree,

1      / \     2   3

 

Return 6.

思路:

递归

代码:

#include
#include
using namespace std;struct TreeNode{ int val; TreeNode* left; TreeNode* right;};int maxPathSum(TreeNode *root,int &maxDist){ if(root==NULL) return 0; int lmax=maxPathSum(root->left,maxDist); int rmax=maxPathSum(root->right,maxDist); if(lmax+rmax+root->val>maxDist) maxDist=lmax+rmax+root->val; return max(0,root->val+max(lmax,rmax));}int main(){ return 0;}

 

转载地址:http://bghza.baihongyu.com/

你可能感兴趣的文章
JSP的隐式对象
查看>>
P127、面试题20:顺时针打印矩阵
查看>>
JS图片跟着鼠标跑效果
查看>>
[SCOI2005][BZOJ 1084]最大子矩阵
查看>>
学习笔记之Data Visualization
查看>>
Leetcode 3. Longest Substring Without Repeating Characters
查看>>
【FJOI2015】金币换位问题
查看>>
数学之美系列二十 -- 自然语言处理的教父 马库斯
查看>>
Android实现自定义位置无标题Dialog
查看>>
面试总结
查看>>
Chrome浏览器播放HTML5音频没声音的解决方案
查看>>
easyui datagrid 行编辑功能
查看>>
类,对象与实例变量
查看>>
HDU 2818 (矢量并查集)
查看>>
【转】php字符串加密解密
查看>>
22. linux 常用命令
查看>>
ASP.Net 使用GridView模板删除一行的用法
查看>>
(十六)字段表集合
查看>>
JPGraph
查看>>
实验二 Java面向对象程序设计
查看>>