z******e 发帖数: 11 | 1 面试了一个小时左右。
1. 用两个stacks来实现一个queue,题不是很难,但是要求逐行念代码,精确到冒号分号,尖括号怎么说
不知道。。。耗了好久。
2. 一些关于multi-threading,critical section,等等。
3. SQL的一些问题,我不怎么会,就skip了。
4. OOD问题,如何设计parking garage,大家有什么好的想法吗?
攒人品中…… |
m******9 发帖数: 968 | 2 读代码这种事情真是有点让人抓狂呀
我也碰到过好几次了,
往往是脑子里想到了,可是就是不容易读出来 |
v*****t 发帖数: 127 | 3 我一般都是读,inside the if statement/ while loop /... I have blabla.. and
that's end of the if/while loop/...
尖括号我也一般就读成:queue with template parameter/argument int...
或者pair of string and int
我觉得能懂就行了,也不一定非得把什么括号都读出来吧。。。
parking题看来出现频率太高了!得好好总结一下!
祝LZ顺利拿到onsite!amazon据说面试完消息来的很快。
分号,尖括号怎么说
【在 z******e 的大作中提到】 : 面试了一个小时左右。 : 1. 用两个stacks来实现一个queue,题不是很难,但是要求逐行念代码,精确到冒号分号,尖括号怎么说 : 不知道。。。耗了好久。 : 2. 一些关于multi-threading,critical section,等等。 : 3. SQL的一些问题,我不怎么会,就skip了。 : 4. OOD问题,如何设计parking garage,大家有什么好的想法吗? : 攒人品中……
|
m******9 发帖数: 968 | 4 对了,好棒
我真的有个代码想请教一下,尤其是读那种需要loop的东西,
比如吧: 这么一个代码 是关于tree 的iterative pre order traverse
while(!stack.empty())
{
item = stack.pop();
print(item);
if(item->right != null)
stack.push(item->right);
if(item->left != null)
stack.push(item->left);
}
该怎么才能读的又简洁,有清楚
真心求教,谢谢
【在 v*****t 的大作中提到】 : 我一般都是读,inside the if statement/ while loop /... I have blabla.. and : that's end of the if/while loop/... : 尖括号我也一般就读成:queue with template parameter/argument int... : 或者pair of string and int : 我觉得能懂就行了,也不一定非得把什么括号都读出来吧。。。 : parking题看来出现频率太高了!得好好总结一下! : 祝LZ顺利拿到onsite!amazon据说面试完消息来的很快。 : : 分号,尖括号怎么说
|
z******e 发帖数: 11 | |
s***t 发帖数: 70 | 6 读code真是很傻,最好方法是用EtherPad.com, online写code, 非常清楚。
分号,尖括号怎么说
【在 z******e 的大作中提到】 : 面试了一个小时左右。 : 1. 用两个stacks来实现一个queue,题不是很难,但是要求逐行念代码,精确到冒号分号,尖括号怎么说 : 不知道。。。耗了好久。 : 2. 一些关于multi-threading,critical section,等等。 : 3. SQL的一些问题,我不怎么会,就skip了。 : 4. OOD问题,如何设计parking garage,大家有什么好的想法吗? : 攒人品中……
|
r********t 发帖数: 395 | |
r********t 发帖数: 395 | |
p******n 发帖数: 156 | 9 尖括号不是less than 和 greater than 吗
上html的时候,一堆尖括号,那个老美就这么念. 不知道是不是通用的念法
分号,尖括号怎么说
【在 z******e 的大作中提到】 : 面试了一个小时左右。 : 1. 用两个stacks来实现一个queue,题不是很难,但是要求逐行念代码,精确到冒号分号,尖括号怎么说 : 不知道。。。耗了好久。 : 2. 一些关于multi-threading,critical section,等等。 : 3. SQL的一些问题,我不怎么会,就skip了。 : 4. OOD问题,如何设计parking garage,大家有什么好的想法吗? : 攒人品中……
|
o*****8 发帖数: 192 | 10 Amazon 不知道现在是21世纪第二个decade吗?怎么还要读code,
tons of instant communication tools... |
s*********s 发帖数: 318 | 11 ehterpad shut down?
http://etherpad.com/ep/blog/posts/transition-update
【在 s***t 的大作中提到】 : 读code真是很傻,最好方法是用EtherPad.com, online写code, 非常清楚。 : : 分号,尖括号怎么说
|
w*****p 发帖数: 215 | 12 问一下,二面之后多久给结果?
amz有没有不怎么问code,都问算法的case啊,这样通过的可能高不高? |