由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Amazon(1)
相关主题
bloomberg onsite题讨论个Binary search tree的题目
Lowest common ancestor of two nodes of Binary Tree这个check whether a binary tree is a BST 问题
recovery BST 不考虑相同值的情况么?谁有较好的iterative后序遍历binary tree的代码?
amazon on-site interview发几道Google面试题(Phone and Onsite)
一道二叉树的老题转一些我blog上一些常见的二叉树面试问题和总结
一道G家题目的思路判断 bst 疑问
求教一道老题recover binary search tree 常数空间
这个Binary Tree的题来看看binary tree, sum of 2 nodes == given number
相关话题的讨论汇总
话题: amazon话题: binary话题: tree话题: check话题: bst
进入JobHunting版参与讨论
1 (共1页)
b********e
发帖数: 693
1
Check whether a binary tree is BST (if the binary tree is very large, you ca
n not simply in-order print all the nodes out.)
P*******b
发帖数: 1001
2
递归不行吗?

ca

【在 b********e 的大作中提到】
: Check whether a binary tree is BST (if the binary tree is very large, you ca
: n not simply in-order print all the nodes out.)

t****a
发帖数: 1212
3
在这道题也刚刚讨论过,参见hock同学的amazon onsite贴
b********e
发帖数: 693
4
递归也需要内存阿

【在 P*******b 的大作中提到】
: 递归不行吗?
:
: ca

p********7
发帖数: 549
5
你的意思是内存不足以分配除了二茶树以外的一个大数组了吧。还是递归吧,递归比分批内存存数组开销小的多
c******n
发帖数: 4965
6
just in order traversal, make sure the last number u see is smaller than
the current number

you ca

【在 b********e 的大作中提到】
: Check whether a binary tree is BST (if the binary tree is very large, you ca
: n not simply in-order print all the nodes out.)

1 (共1页)
进入JobHunting版参与讨论
相关主题
binary tree, sum of 2 nodes == given number一道二叉树的老题
请教LEETCODE讲解部分的LCA一道题的变种。。一道G家题目的思路
请教find number of duplicates in a binary search tree求教一道老题
Find the node with given value in binary tree in in-order这个Binary Tree的题来看看
bloomberg onsite题讨论个Binary search tree的题目
Lowest common ancestor of two nodes of Binary Tree这个check whether a binary tree is a BST 问题
recovery BST 不考虑相同值的情况么?谁有较好的iterative后序遍历binary tree的代码?
amazon on-site interview发几道Google面试题(Phone and Onsite)
相关话题的讨论汇总
话题: amazon话题: binary话题: tree话题: check话题: bst