由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Careercup 4.9解释一下?
相关主题
这个题做的对吗?一道大公司诡异的complete binary tree max sum of 2 nodes 题
cc150上面binary tree找所有sum==target的path,不一定从root出发求教balanced binary tree的准确定义
感觉leetcode的OJ有点太偏重DP了Binary Tree Maximum Path Sum
Binary Tree Maximum Path SumFlatten Binary Tree to Linked List的recursive解法
问道150上的题:sum of path in binary treea question regarding finding all paths with a common sum
问CareerCup(第四版)一题的高效做法,谢谢!binary search tree的定义
判断树为binary search tree 有多少种解法check if a binary tree is a valid binary search tree
请教一个binary tree问题help: leetcode "Recover Binary Search Tree" -- 附代码
相关话题的讨论汇总
话题: careercup话题: path话题: 解释一下话题: 树中话题: root
进入JobHunting版参与讨论
1 (共1页)
j*****j
发帖数: 201
1
就是求一个Binary Tree所有和为某特定值的path,一个path的定义为树中任意两点在
树中的通路。
他给的解法似乎只能算出不”转弯“的path,有的path就求不出来,比如
1
/ \
2 3
/
4
当sum=6时,只能输出2-4, 不能输出,2-1-3.
是不是我理解题目错了?
s*******n
发帖数: 499
2
path is from root to leave or one in the middle

【在 j*****j 的大作中提到】
: 就是求一个Binary Tree所有和为某特定值的path,一个path的定义为树中任意两点在
: 树中的通路。
: 他给的解法似乎只能算出不”转弯“的path,有的path就求不出来,比如
: 1
: / \
: 2 3
: /
: 4
: 当sum=6时,只能输出2-4, 不能输出,2-1-3.
: 是不是我理解题目错了?

j*****j
发帖数: 201
3
这样啊,土了

【在 s*******n 的大作中提到】
: path is from root to leave or one in the middle
l*****a
发帖数: 14598
4
不土啊
你这样确认没问题啊
好像没有官方定义说path一定是root to any node
而且我看第四版4.8特地说明不一定start from root
你看的是第五版?

【在 j*****j 的大作中提到】
: 这样啊,土了
j*****j
发帖数: 201
5
是第五版。
path不需要从root出发,关键问题是能不能“拐弯”也就是同时经过某节点的左子树,
此节点和右子树,如果能拐弯,那书上的code肯定是错的。我那个反例就是说明

【在 l*****a 的大作中提到】
: 不土啊
: 你这样确认没问题啊
: 好像没有官方定义说path一定是root to any node
: 而且我看第四版4.8特地说明不一定start from root
: 你看的是第五版?

b***e
发帖数: 1419
6
To cover the extended case you're mentioning, the solution just need simple
extension:
In the list of possible sums at each node, see if two numbers sums up to the
target value.

【在 j*****j 的大作中提到】
: 是第五版。
: path不需要从root出发,关键问题是能不能“拐弯”也就是同时经过某节点的左子树,
: 此节点和右子树,如果能拐弯,那书上的code肯定是错的。我那个反例就是说明

j*****j
发帖数: 201
7
没明白。。。

simple
the

【在 b***e 的大作中提到】
: To cover the extended case you're mentioning, the solution just need simple
: extension:
: In the list of possible sums at each node, see if two numbers sums up to the
: target value.

1 (共1页)
进入JobHunting版参与讨论
相关主题
help: leetcode "Recover Binary Search Tree" -- 附代码问道150上的题:sum of path in binary tree
Find the node with given value in binary tree in in-order问CareerCup(第四版)一题的高效做法,谢谢!
问一个题目判断树为binary search tree 有多少种解法
问个binary tree node path的概念问题请教一个binary tree问题
这个题做的对吗?一道大公司诡异的complete binary tree max sum of 2 nodes 题
cc150上面binary tree找所有sum==target的path,不一定从root出发求教balanced binary tree的准确定义
感觉leetcode的OJ有点太偏重DP了Binary Tree Maximum Path Sum
Binary Tree Maximum Path SumFlatten Binary Tree to Linked List的recursive解法
相关话题的讨论汇总
话题: careercup话题: path话题: 解释一下话题: 树中话题: root