t*****g 发帖数: 113 | 1 比方C++的STL的function什么的?工作中都是现查的啊。难道现在面试要记住这些函数
名,syntax什么的?
以前好像是不用的,在这些地方我都是用pseudo-code的。不知道现在还是不是这样?
多谢 |
g***s 发帖数: 3811 | 2 最少在google,你可以写pseudo-code。主要看到是你的思路。
当然,最常有的几个最好记得。否则明显你不常用。
【在 t*****g 的大作中提到】 : 比方C++的STL的function什么的?工作中都是现查的啊。难道现在面试要记住这些函数 : 名,syntax什么的? : 以前好像是不用的,在这些地方我都是用pseudo-code的。不知道现在还是不是这样? : 多谢
|
l***i 发帖数: 1309 | 3 if you don't know the syntax, why use them? You can write your own
implementation, or just give a prototype and explain what that function will
do and how you will implement it. |
v*****r 发帖数: 2325 | 4 i had a phone interview with amazon. the problem is not very hard.
but was asked to write the code with 30 min without doing any search and
reference check.
in this case, the closer the code ready to run, the better.
i guess this kind of test check if you are rusty or not.
give a soluation and pretty much finish the coding is not enough.
【在 t*****g 的大作中提到】 : 比方C++的STL的function什么的?工作中都是现查的啊。难道现在面试要记住这些函数 : 名,syntax什么的? : 以前好像是不用的,在这些地方我都是用pseudo-code的。不知道现在还是不是这样? : 多谢
|
z****o 发帖数: 78 | 5 Google的白板不需要知道具体的STL,你可以assume一个insert的行为和接口然后用,
但是必须define出来,因为比如insert是pass by ref或者pass by value对外面实现还
是有影响的。还有像pop()到底是不是有返回值你只要define清楚他们并不计较。 |
t*****g 发帖数: 113 | 6 got it. Thanks all!
【在 z****o 的大作中提到】 : Google的白板不需要知道具体的STL,你可以assume一个insert的行为和接口然后用, : 但是必须define出来,因为比如insert是pass by ref或者pass by value对外面实现还 : 是有影响的。还有像pop()到底是不是有返回值你只要define清楚他们并不计较。
|