由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - find kth smallest node of bst
相关主题
Google Front-end Software Engineer Phone InterviewLink nodes at same level in a binary tree 怎么做?
问个老题,find the next larger in BSTHow to find the kth biggest number in a BST
G家onsite面经BST 找重复节点数
问道题recovery BST 不考虑相同值的情况么?
Find number of subtrees with the same valueAmazon 打印给定node距离最近的K个nodes
两个有点难度很有意思的题问个binary search tree的问题
今天上一题FB两次电面
请教一个Leetcode付费题Quick sort为什么需要logN的memory?
相关话题的讨论汇总
话题: kth话题: node话题: smallest
进入JobHunting版参与讨论
1 (共1页)
R**e
发帖数: 274
1
这个题递归可以解吗?我写了半天代码也不对。谢谢
h*****n
发帖数: 209
2
in-order递归啊。

【在 R**e 的大作中提到】
: 这个题递归可以解吗?我写了半天代码也不对。谢谢
c***2
发帖数: 838
3
Do in-order traversal with a global counter
P*******b
发帖数: 1001
4
打印可以,返回比较麻烦吧。

【在 h*****n 的大作中提到】
: in-order递归啊。
d**e
发帖数: 6098
5
用O(k)空间应该可以返回吧

【在 P*******b 的大作中提到】
: 打印可以,返回比较麻烦吧。
z**o
发帖数: 60
6
in order 正解
P*******b
发帖数: 1001
7
还得是全局的吧。

【在 d**e 的大作中提到】
: 用O(k)空间应该可以返回吧
x******3
发帖数: 245
8
store the subtree size in each node, lgN time complexity
1 (共1页)
进入JobHunting版参与讨论
相关主题
Quick sort为什么需要logN的memory?Find number of subtrees with the same value
O(1)space解法到底能不能用递归?两个有点难度很有意思的题
判断一个树是不是另一个树的子树?今天上一题
一个Amazon的面经请教一个Leetcode付费题
Google Front-end Software Engineer Phone InterviewLink nodes at same level in a binary tree 怎么做?
问个老题,find the next larger in BSTHow to find the kth biggest number in a BST
G家onsite面经BST 找重复节点数
问道题recovery BST 不考虑相同值的情况么?
相关话题的讨论汇总
话题: kth话题: node话题: smallest