由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - leetcode: Lowest Common Ancestor of a Binary Tree Part 的解法
相关主题
请问关于lowest common ancestor的问题。Another problem about Binary tree.
Lowest Common Ancestor (LCA) The tree is not a binary treeLCA 问题
Lowest common ancestor of two nodes of Binary Tree讨论 Lowest common ancestor of BST
Lowest Common Ancestor of multiple nodes in a binary tree一道链表题及其变种
豁出去了,决定怒刷100题一个老题binary tree找 lowest common ancestor 的code (请教
请教Lowest Common Ancestor of a Binary Tree Part I iterative solution?Lowest Common Ancestor in a binary tree (no parent pointer)
请问LOWEST COMMON ANCESTOR OF A BINARY TREE, treenode 只有parent,没有left,right这是为什么?
问一个LCA问题求教Leetcode题目:Lowest Common Ancestor
相关话题的讨论汇总
话题: botomn话题: binary话题: lowest话题: part话题: ancestor
进入JobHunting版参与讨论
1 (共1页)
g****9
发帖数: 163
1
http://leetcode.com/2011/07/lowest-common-ancestor-of-a-binary-
第一种solution是top down这个make sense的,但是第二种就是botomn up?自己举了
个例子还是不理解为啥第二种就是botomn up了?求高手指点。
我一直搞的不是太懂botom up和top down,理解的是top down就从root开始往下走,
botomn up不是应该从最底层网上走的吗?但是看到的用botomn up的algorithm还是从
root开始往下走的 confused了。
m*****k
发帖数: 731
2
it is recursive,
calling down from top, but return the value up level by level.

【在 g****9 的大作中提到】
: http://leetcode.com/2011/07/lowest-common-ancestor-of-a-binary-
: 第一种solution是top down这个make sense的,但是第二种就是botomn up?自己举了
: 个例子还是不理解为啥第二种就是botomn up了?求高手指点。
: 我一直搞的不是太懂botom up和top down,理解的是top down就从root开始往下走,
: botomn up不是应该从最底层网上走的吗?但是看到的用botomn up的algorithm还是从
: root开始往下走的 confused了。

1 (共1页)
进入JobHunting版参与讨论
相关主题
求教Leetcode题目:Lowest Common Ancestor豁出去了,决定怒刷100题
问道G题(3)请教Lowest Common Ancestor of a Binary Tree Part I iterative solution?
刚看了geekforgeek烙印代码果然一坨屎逻辑混乱请问LOWEST COMMON ANCESTOR OF A BINARY TREE, treenode 只有parent,没有left,right
请问如果公司对面试者满意了,下一步大家都是怎么和HR怎么往下走的问一个LCA问题
请问关于lowest common ancestor的问题。Another problem about Binary tree.
Lowest Common Ancestor (LCA) The tree is not a binary treeLCA 问题
Lowest common ancestor of two nodes of Binary Tree讨论 Lowest common ancestor of BST
Lowest Common Ancestor of multiple nodes in a binary tree一道链表题及其变种
相关话题的讨论汇总
话题: botomn话题: binary话题: lowest话题: part话题: ancestor