由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 求问一道G家的题
相关主题
Bloomberg phone interview 面经请问leetcode的Binary Search Tree Iterator
把leetcode做完了Google电话面试题目
Google + Facebook Onsite questions问个面试题
amazon 电面题find median for k sorted arrays
有没有人同觉得Recover Binary Search Tree的solution using O(n) space并不是那么straight forward么?Extension problem of finding intersection of two sorted array
Construct Binary Tree from Preorder and Inorder Traversal算法复杂度?哪里有讲k-way merge的?
A家面试题刷题刷到没自信了
攒个人品发碗F家面筋请教A家题
相关话题的讨论汇总
话题: interface话题: sorted话题: list话题: array话题: implement
进入JobHunting版参与讨论
1 (共1页)
f********x
发帖数: 2086
1
Design an interface that can convert both a sorted linked list and a sorted
array into a balanced binary search tree. Implement it in both bottom-up and
top-down approaches
不知道如何一个interface同时搞定list和array?
n*******1
发帖数: 145
2
额 难道不是generic吗
f********x
发帖数: 2086
3

怎么generic呢?数据结构不一样。一个是linkedlist一个是array。
还是这个题只是定义一个interface?
public interface GeneralInterface{
public TreeNode construct(T list);
}
?

【在 n*******1 的大作中提到】
: 额 难道不是generic吗
s******d
发帖数: 424
4
template + stl
std::vector
std::list
distance, advance, prev, next 什么的
template
void sortedToBST(InputIterator iter, int len);
h****n
发帖数: 1093
5
直接用function的override分别implement不行么?
要么就用iterator pattern吧,两种分别implement hasNext, Next函数。。
然后相同的function里面只调用这两个函数来实现,不知道可不可行

sorted
and

【在 f********x 的大作中提到】
: Design an interface that can convert both a sorted linked list and a sorted
: array into a balanced binary search tree. Implement it in both bottom-up and
: top-down approaches
: 不知道如何一个interface同时搞定list和array?

1 (共1页)
进入JobHunting版参与讨论
相关主题
请教A家题有没有人同觉得Recover Binary Search Tree的solution using O(n) space并不是那么straight forward么?
a[i] + b[j] = c[k] 的题有靠谱的答案不?Construct Binary Tree from Preorder and Inorder Traversal算法复杂度?
优步面试,哎。。。A家面试题
一个特别的inplace merge two sorted arrays攒个人品发碗F家面筋
Bloomberg phone interview 面经请问leetcode的Binary Search Tree Iterator
把leetcode做完了Google电话面试题目
Google + Facebook Onsite questions问个面试题
amazon 电面题find median for k sorted arrays
相关话题的讨论汇总
话题: interface话题: sorted话题: list话题: array话题: implement