由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - BST 里面的 null 是啥意思?
相关主题
amazon on-site interview这个Binary Tree的题来看看
这种解法对吗?merge two BST请教一个BST找Median的题目
一个老题binary tree找 lowest common ancestor 的code (请教判断一个树是不是另一个树的子树?
Lowest common ancestor of two nodes of Binary Tree如何求BST的median
请教LEETCODE讲解部分的LCA一道题的变种。。find the median of an infinite data stream of integers
求问一个Java问题分享一道面试题
面试题问个题
MS面试题一道二叉树的题
相关话题的讨论汇总
话题: null话题: bst话题: node话题: value话题: output
进入JobHunting版参与讨论
1 (共1页)
x****g
发帖数: 39
1
leetcode easy BST LCA problem:
的 test case 里面的 BST 有 node 是 null,
[5,3,6,2,4,null,null,1], node with value 1, node with value 4
Output:
null
Expected:
3
[5, 3, 6, 2, 4] 是如下的 BST 吧? null 插入到哪里呢?
5
3 6
2 4
g**d
发帖数: 383
2
e.g. 6 的左右子树都是null
x****g
发帖数: 39
3
为嘛一定是6?null > 5 不成立的
另外 2,4 的左右子树默认也是 null 吧,却没列出来

【在 g**d 的大作中提到】
: e.g. 6 的左右子树都是null
x****g
发帖数: 39
4
啊我明白了,bst 的 array 表示是有格式的。谢谢。

【在 g**d 的大作中提到】
: e.g. 6 的左右子树都是null
1 (共1页)
进入JobHunting版参与讨论
相关主题
一道二叉树的题请教LEETCODE讲解部分的LCA一道题的变种。。
一道设计题求问一个Java问题
一道非常伪善的面试题面试题
请问BST里怎么处理“等于”的情况?MS面试题
amazon on-site interview这个Binary Tree的题来看看
这种解法对吗?merge two BST请教一个BST找Median的题目
一个老题binary tree找 lowest common ancestor 的code (请教判断一个树是不是另一个树的子树?
Lowest common ancestor of two nodes of Binary Tree如何求BST的median
相关话题的讨论汇总
话题: null话题: bst话题: node话题: value话题: output