#Leet Code# Binary Tree Max[待精简]
描述:递归调用,getMax返回 [节点值,经过节点左子节点的最大值,经过节点右节点的最大值],每次递归同时查看是否存在不经过节点的值大于max。
代码:待优化
def getLargeNode(self, a, b):
if a and b:
return max(a, b)
elif a and not b:
return a
elif not a and b:
return b
else:
tmp = None def getMax(self, node):
if node is None:
return [None, None, None] left = self.getMax(node.left)
right = self.getMax(node.right) pass_node_max = node.val
if left[0] is not None:
if left[1] > self.maxPath:
self.maxPath = item
if left[2] > self.maxPath:
self.maxPath = item tmp = self.getLargeNode(left[1], left[2]) if tmp is not None:
if tmp <= 0 and left[0] <= 0:
left_val = left[0]
elif tmp > 0 and left[0] <= 0:
left_val = left[0] + tmp
if tmp + left[0] > 0:
pass_node_max += left_val
elif tmp <= 0 and left[0] > 0:
left_val = left[0]
pass_node_max += left_val
else:
left_val = left[0] + tmp
pass_node_max += left_val
else:
left_val = left[0]
if left[0] > 0:
pass_node_max += left[0]
else:
left_val = None if right[0] is not None:
if right[1] > self.maxPath:
self.maxPath = right[1]
if right[2] > self.maxPath:
self.maxPath = right[1] tmp = self.getLargeNode(right[1], right[2]) if tmp is not None:
if tmp <= 0 and right[0] <= 0:
right_val = right[0]
elif tmp > 0 and right[0] <= 0:
right_val = right[0] + tmp
if tmp + right[0] > 0:
pass_node_max += right_val
elif tmp <= 0 and right[0] > 0:
right_val = right[0]
pass_node_max += right_val
else:
right_val = right[0] + tmp
pass_node_max += right_val
else:
right_val = right[0]
if right[0] > 0:
pass_node_max += right[0]
else:
right_val = None if pass_node_max > self.maxPath:
self.maxPath = pass_node_max return [node.val, left_val, right_val] def maxPathSum(self, root):
self.maxPath = root.val
if not(root.left or root.right):
return self.maxPath result = self.getMax(root) root_val = root.val
if result[1] > 0:
root_val += result[1]
if result[2] > 0:
root_val += result[2]
if root_val > self.maxPath:
self.maxPath = root_val if result[1] > self.maxPath:
self.maxPath = result[1]
if result[2] > self.maxPath:
self.maxPath = result[2] return self.maxPath
#Leet Code# Binary Tree Max[待精简]的更多相关文章
- (算法)Binary Tree Max Path Sum
		题目: Given a binary tree, find the maximum path sum. For this problem, a path is defined as any seque ... 
- #Leet Code# Same Tree
		语言:Python 描述:使用递归实现 # Definition for a binary tree node # class TreeNode: # def __init__(self, x): # ... 
- #Leet Code# Unique Tree
		语言:Python 描述:使用递归实现 class Solution: # @return an integer def numTrees(self, n): : elif n == : else: ... 
- Leet Code OJ 226. Invert Binary Tree [Difficulty: Easy]
		题目: Invert a binary tree. 4 / \ 2 7 / \ / \ 1 3 6 9 to 4 / \ 7 2 / \ / \ 9 6 3 1 思路分析: 题意是将二叉树全部左右子数 ... 
- [Algorithm] Find Max Items and Max Height of a Completely Balanced Binary Tree
		A balanced binary tree is something that is used very commonly in analysis of computer science algor ... 
- Cracking the Code Interview 4.3 Array to Binary Tree
		Given a sorted (increasing order) array, write an algorithm to create a binary tree with minimal hei ... 
- Google Code Jam 2014 Round 1 A:Problem B. Full Binary Tree
		Problem A tree is a connected graph with no cycles. A rooted tree is a tree in which one special ver ... 
- 一道算法题目, 二行代码, Binary Tree
		June 8, 2015 我最喜欢的一道算法题目, 二行代码. 编程序需要很强的逻辑思维, 多问几个为什么, 可不可以简化.想一想, 二行代码, 五分钟就可以搞定; 2015年网上大家热议的 Home ... 
- leetcode : Binary Tree Paths
		Given a binary tree, return all root-to-leaf paths. For example, given the following binary tree: 1 ... 
随机推荐
- PAT 1076. Forwards on Weibo (30)
			Weibo is known as the Chinese version of Twitter. One user on Weibo may have many followers, and may ... 
- linux ssh scp无密码登录
			一. 应用场景 假如你Linux Client是客户端, Server为服务器,用户名为user.现在要配置从Client到Server的无密码SSH登录或者无密码的scp拷贝. 例如客户端Clien ... 
- Python 3语法小记(六)条件、循环和assert、pass、del
			条件: if 条件: 语句块 elif: 语句块 else: 语句块 elif 表示 else if 这居然是合法的!!!1 < x < 2!!! >> ... 
- uva-10487 - Closest Sums
			暴力枚举后去重最后二分加推断找答案 #include<iostream> #include<map> #include<string> #include<cs ... 
- 日志分析(php+nosql+rsync+crontable)
			是不是经常要分析用户的行为?是不是经常遇到多台server上传的日志一起分析?是不是对数据统计的间隔时间要求非常短?还有木有由于日志文件过大,而须要分块处理? 1.说明一点在日志写入的时候必须依照一种 ... 
- android intent 隐式意图和显示意图(activity跳转)
			android中的意图有显示意图和隐式意图两种, 显示意图要求必须知道被激活组件的包和class 隐式意图只需要知道跳转activity的动作和数据,就可以激活对应的组件 A 主activity B ... 
- hibernate入门之person表
			下面的hibernate入门person表指的是:根据mysql数据库中的test表和其中的元素-->建立映射表==>进而创建持久化类的顺序来操作了,下面为步骤 1.配置MySQL驱动程序 ... 
- C# DataTable怎么合计字段
			DataTable dt = new DataTable(); var age=dt.Compute("avg(age)",""); var height =d ... 
- NDK开发之ndk-build命令详解
			毫无疑问,通过执行ndk-build脚本启动android ndk构建系统. 默认情况下,ndk-build脚本在工程的主目录中执行,如: 我们可以用使用-C参数改变上述行为,-C指定工程的目录,这样 ... 
- Android(java)学习笔记187:Android中操作XML数据(使用Pull解析器)
			1. Pull解析器的运行方式与 SAX 解析器相似.它提供了类似的事件,如:开始元素和结束元素事件,使用parser.next()可以进入下一个元素并触发相应事件.跟SAX不同的是, Pull解析器 ... 
