A*3
2 楼
Phone:
SSL, for example a -> b (A refer B)
d -> c (D refer C)
c -> a (C refer A)
find a data structure to save these information and print the following
result: d->c->a->b
Onsite:
1. design public interfaces for cache (like cache for string)
2. design public interfaces for router
3. merge two binary search tree
4. 爬楼梯,每次可以一个step,或者两个step,问有多少种走法?
5. 如何实现一个queue? 怎么分别通过stack,linked list, heap实现?
6. preorder binary search tree.
判断两个binary search tree的pre
SSL, for example a -> b (A refer B)
d -> c (D refer C)
c -> a (C refer A)
find a data structure to save these information and print the following
result: d->c->a->b
Onsite:
1. design public interfaces for cache (like cache for string)
2. design public interfaces for router
3. merge two binary search tree
4. 爬楼梯,每次可以一个step,或者两个step,问有多少种走法?
5. 如何实现一个queue? 怎么分别通过stack,linked list, heap实现?
6. preorder binary search tree.
判断两个binary search tree的pre
p*h
3 楼
为什么都是花?
哪个好看?
哪个好看?
f*g
4 楼
不也是招聘兼职的信息吗?做的又不是见不得人的事情,为什么删帖子?那么多其他招
聘的帖子怎么不删呢?
课余时间增加薄厚们的收入有什么不好的?
聘的帖子怎么不删呢?
课余时间增加薄厚们的收入有什么不好的?
K*g
6 楼
请问phone的那题用什么数据结构好
【在 A*********3 的大作中提到】
: Phone:
: SSL, for example a -> b (A refer B)
: d -> c (D refer C)
: c -> a (C refer A)
: find a data structure to save these information and print the following
: result: d->c->a->b
: Onsite:
: 1. design public interfaces for cache (like cache for string)
: 2. design public interfaces for router
: 3. merge two binary search tree
【在 A*********3 的大作中提到】
: Phone:
: SSL, for example a -> b (A refer B)
: d -> c (D refer C)
: c -> a (C refer A)
: find a data structure to save these information and print the following
: result: d->c->a->b
: Onsite:
: 1. design public interfaces for cache (like cache for string)
: 2. design public interfaces for router
: 3. merge two binary search tree
a*r
7 楼
一个有版权,一个山寨
h*e
8 楼
同等。。。 onsite一般都不会默剧 不过要是最后一个面完两三周没结果 发信没人理
估计就是offer已经发出去了。。。
楼主等了多久呀
估计就是offer已经发出去了。。。
楼主等了多久呀
A*r
9 楼
请问是experienced的吗?
怎么有两道题要design interface, 平时大家在学校编程很少用到interface吧?
我也差不多要准备onsite了,好没有底。。
祝楼主好运。。
【在 A*********3 的大作中提到】
: Phone:
: SSL, for example a -> b (A refer B)
: d -> c (D refer C)
: c -> a (C refer A)
: find a data structure to save these information and print the following
: result: d->c->a->b
: Onsite:
: 1. design public interfaces for cache (like cache for string)
: 2. design public interfaces for router
: 3. merge two binary search tree
怎么有两道题要design interface, 平时大家在学校编程很少用到interface吧?
我也差不多要准备onsite了,好没有底。。
祝楼主好运。。
【在 A*********3 的大作中提到】
: Phone:
: SSL, for example a -> b (A refer B)
: d -> c (D refer C)
: c -> a (C refer A)
: find a data structure to save these information and print the following
: result: d->c->a->b
: Onsite:
: 1. design public interfaces for cache (like cache for string)
: 2. design public interfaces for router
: 3. merge two binary search tree
I*s
10 楼
一个湖南卫视的,一个东方卫视的,制作水平差大发了。
A*3
12 楼
Re KingMing: 我用的linked List 好像没有问题
Re AprilFlower: 这是New Graduates的
public interface就是用户可以使用的一些public method
Re AprilFlower: 这是New Graduates的
public interface就是用户可以使用的一些public method
p*m
14 楼
不知道最后一个是什么时候,我2/20面的...3/4告诉我还在in progress ,上周的邮件
就不回了
就不回了
f*g
15 楼
Thanks for sharing :P
Here is my solution for Phone Question:
SSL, for example a -> b (A refer B)
d -> c (D refer C)
c -> a (C refer A)
find a data structure to save these information and print the following
result: d->c->a->b
++++++++++++++++++++
The data structure I pick is Array Hash Table.
Typedef struct NODE{
unsigned char keyVal;
unsigned char *pRefer; // point to the char referred.
} Node;
Node key[26];
Insertion operation: space O(26), tim
Here is my solution for Phone Question:
SSL, for example a -> b (A refer B)
d -> c (D refer C)
c -> a (C refer A)
find a data structure to save these information and print the following
result: d->c->a->b
++++++++++++++++++++
The data structure I pick is Array Hash Table.
Typedef struct NODE{
unsigned char keyVal;
unsigned char *pRefer; // point to the char referred.
} Node;
Node key[26];
Insertion operation: space O(26), tim
f*5
17 楼
楼主再等等吧
同煎熬
不过我是绝对不发邮件问。
除非有OFFER了,用一个OFFER 去催另外一个的结果。要不然感觉问不问根本没区别。
。。
同煎熬
不过我是绝对不发邮件问。
除非有OFFER了,用一个OFFER 去催另外一个的结果。要不然感觉问不问根本没区别。
。。
y*e
18 楼
感谢分享题目。尝试做一下。
f*5
20 楼
楼主是什么专业?
n*g
21 楼
感觉你那个merge 2 BST的程序有点问题。看看下面这个code:
Node* MostLeft(Node *root)
{
if(root->left == NULL)
return root;
else
return MostLeft(root);
}
// Merge two BST in to one BST.
Node* MergeTwoBST(Node* root1, Node* root2)
{
Node *left, *right, *mostLeft;
if(root1 == NULL)
return root2;
if(root2 == NULL)
return root1;
if(root1->value > root2->value)
return MergeTwoBST(root2, root1);
if(root1->value < root2->value)
{
right = root1->r
【在 y*********e 的大作中提到】
: 感谢分享题目。尝试做一下。
Node* MostLeft(Node *root)
{
if(root->left == NULL)
return root;
else
return MostLeft(root);
}
// Merge two BST in to one BST.
Node* MergeTwoBST(Node* root1, Node* root2)
{
Node *left, *right, *mostLeft;
if(root1 == NULL)
return root2;
if(root2 == NULL)
return root1;
if(root1->value > root2->value)
return MergeTwoBST(root2, root1);
if(root1->value < root2->value)
{
right = root1->r
【在 y*********e 的大作中提到】
: 感谢分享题目。尝试做一下。
h*o
25 楼
一个靠制作
一个靠明星
两个都打着旅游的幌子挑逗群众斗群众,这点上,花姐在花少面前还是小学生。
一个靠明星
两个都打着旅游的幌子挑逗群众斗群众,这点上,花姐在花少面前还是小学生。
s*n
29 楼
番茄还在捡芒果第一季搞过的渣渣,水平差太多了,而且忒假了,看了第一集那个李故意
发火啊还有找不到酒店就知道可以放弃了
不过芒果下一集要去登山野营,这个难度很大啊,估计嘉宾要被累残了
其实野营非常好玩有趣,如果天气好风景好的话,但是登山的确很少数人才会喜欢
【在 c******e 的大作中提到】
: 事实其实更复杂一些。原版花姐是一个男的带四个女的,但是芒果山寨的时候改成了俩
: 男的和五个女的,然后自称原创。再然后番茄拿了原版的版权,却没有用原版的形式,
: 反而山寨了芒果的山寨。
: 我以前打过个比方,这事就类似于中国某经销商拿到可口可乐授权,突然发现山寨的百
: 事已经卖得热火朝天,观众也更熟悉百事的口味了, 干脆一不做二不休,把百事可乐
: 装到自己的红罐子里开卖。
发火啊还有找不到酒店就知道可以放弃了
不过芒果下一集要去登山野营,这个难度很大啊,估计嘉宾要被累残了
其实野营非常好玩有趣,如果天气好风景好的话,但是登山的确很少数人才会喜欢
【在 c******e 的大作中提到】
: 事实其实更复杂一些。原版花姐是一个男的带四个女的,但是芒果山寨的时候改成了俩
: 男的和五个女的,然后自称原创。再然后番茄拿了原版的版权,却没有用原版的形式,
: 反而山寨了芒果的山寨。
: 我以前打过个比方,这事就类似于中国某经销商拿到可口可乐授权,突然发现山寨的百
: 事已经卖得热火朝天,观众也更熟悉百事的口味了, 干脆一不做二不休,把百事可乐
: 装到自己的红罐子里开卖。
m*c
36 楼
小弟有一个2月初面的,2月底最后一个candidate面完,上周发邮件问status,直接没
回;和老板抱怨,老板直接说move on, 从态度来看,这个学校也不怎么地。。。同煎
熬,大家共勉。。。
回;和老板抱怨,老板直接说move on, 从态度来看,这个学校也不怎么地。。。同煎
熬,大家共勉。。。
a*n
40 楼
我找发考题工作的第一个onsite是09年一月。一直到今天都没收到据信:) 不过自己也
没回头去催就是了。后来别的学校有offer,懒得折腾就直接接受了。
没回头去催就是了。后来别的学校有offer,懒得折腾就直接接受了。
m*8
42 楼
同等.
但感觉如果最后一个面完两个星期还没消息,就不是top candidate. If you are
still being considered, then they probably do not want to say much.
我申请的职位上周五面完,这周一问了,得到回答说这周决定,并说“I hope to be
in touch with more substantive news soon". 貌似即使我不是top,也会告知?(印象
中这个系的人极其nice). 等着吧。
希望大家都能拿到好的offer。
但感觉如果最后一个面完两个星期还没消息,就不是top candidate. If you are
still being considered, then they probably do not want to say much.
我申请的职位上周五面完,这周一问了,得到回答说这周决定,并说“I hope to be
in touch with more substantive news soon". 貌似即使我不是top,也会告知?(印象
中这个系的人极其nice). 等着吧。
希望大家都能拿到好的offer。
c*t
44 楼
两周差不多
我从的offer是面试完第五天拿到的,文科专业
我从的offer是面试完第五天拿到的,文科专业
w*t
49 楼
林志玲还颜值高啊,比郑爽宁静许晴差远了。不过胜在性格好气质不错情商高,相处舒
服,而且打扮时尚,整体看来赏心悦目。我喜欢花样姐姐的马天宇李治廷,花少的众姐
姐们。节目当然
是花少的好看,画面精致,景色宜人。看了新一期的花样姐姐,内容空乏,让人昏昏欲
睡。
服,而且打扮时尚,整体看来赏心悦目。我喜欢花样姐姐的马天宇李治廷,花少的众姐
姐们。节目当然
是花少的好看,画面精致,景色宜人。看了新一期的花样姐姐,内容空乏,让人昏昏欲
睡。
h*e
52 楼
楼主有何消息么?
s*n
56 楼
问不问真没有太大区别
自己感觉超过2星期就该move on了 虽然自己还是不死心 发了信别人打了个太极
自己感觉超过2星期就该move on了 虽然自己还是不死心 发了信别人打了个太极
相关阅读
求审稿-生物 GPCR 10包子酬谢学生物的和当年被忽悠的知青差不多所谓“有机食物”,“有机奶”,是否最大的忽悠???????生物女薄厚颜值的确高Part time job opportunity悬浮细胞,如何做荧光显微镜?海归帝都--工作机会连低收入失业高中毕业生也在克隆基因了Oncotarget review咨询paper thanks2paper help Biomarkers in Medicinepaper help包子求paper底层的人在年青的时候雄心万丈奋力拼搏现在biotech机会很多啊文献求助paper help pls! thanks!需要微生物、代谢工程审稿的请私信BANCOVA Clinical SAS 现在招生[求助]RNA-seq data怎么做broad的GSEA分析