b*****t 发帖数: 72 | 1 Coding(都是挺基本的题,但是我有几个题有些bug,哎):
1.Find the missing number in an array;
2. Reverse the bits of an integer;
3. Using a MACRO function to output the byte stream;
4. Detect a loop in a linked list;
5. Reverse a string(protect the input& return a new string);
6. Count the Ones of an integer;
7. Endianness detection;
8. Delete a node in a singly linked list and a double linked list;
9. Even parity function;
10. Extract the payload part from a packet;
11. Rounding function;
C/C++:
1. Static keyword;
2. Heap vs stack;
3. Data structure comparison;
4. Volatile keyword;
5. Red-black tree;
6. Call-return mechanism;
7. Information need to store in the stack when making a function call;
OS and others:
1. Knowledge about cache, the performance and the mode;
2. Paging maehanism and virtual memory;
3. Memory leak detection;
4. Crash at ramdon place debugging;
5. Optimalization of the code;
6. Thread and the information store in the thread;
7. Basics about TCP/IP, and DHCP.
暂时只能记得这些,希望对大家有帮助。总体感觉很一般,有几个面得不太好,coding
的时候有几个bug,其中有一个比较严重,哎,都怪自己不太熟练。God bless。 |
p*********o 发帖数: 892 | |
c****p 发帖数: 6474 | 3 题目都挺偏底层的。。。什么职位啊。。。
居然要考RB-TREE,,,这连专门的软件公司都不考的啊。。。
【在 b*****t 的大作中提到】 : Coding(都是挺基本的题,但是我有几个题有些bug,哎): : 1.Find the missing number in an array; : 2. Reverse the bits of an integer; : 3. Using a MACRO function to output the byte stream; : 4. Detect a loop in a linked list; : 5. Reverse a string(protect the input& return a new string); : 6. Count the Ones of an integer; : 7. Endianness detection; : 8. Delete a node in a singly linked list and a double linked list; : 9. Even parity function;
|
b*****t 发帖数: 72 | 4 有点,这个印度哥们问的问题都挺tough的,好几个我都没回答上来,让我觉得很沮丧
,幸亏RB-TREE我还知道一些,所以大概说了一些。
【在 c****p 的大作中提到】 : 题目都挺偏底层的。。。什么职位啊。。。 : 居然要考RB-TREE,,,这连专门的软件公司都不考的啊。。。
|
b*****t 发帖数: 72 | 5 SD
【在 p*********o 的大作中提到】 : bless, : CA的吗?
|
s********k 发帖数: 6180 | 6 experienced or entry level?
【在 b*****t 的大作中提到】 : SD
|
b*****t 发帖数: 72 | 7 Entry-level
【在 s********k 的大作中提到】 : experienced or entry level?
|
t*********1 发帖数: 2852 | |
a*****1 发帖数: 314 | |
M******e 发帖数: 103 | |
|
|
f**********7 发帖数: 265 | |
z*****b 发帖数: 1016 | |
s***g 发帖数: 1250 | |
s***g 发帖数: 1250 | |
a********k 发帖数: 11445 | |
w**********6 发帖数: 800 | 16 祝福,并问, Thread and the information store in the thread 怎么回答比较一针
见血? |
z********1 发帖数: 262 | |
vn 发帖数: 6191 | |
r**********u 发帖数: 1343 | 19 bless
【在 b*****t 的大作中提到】 : Coding(都是挺基本的题,但是我有几个题有些bug,哎): : 1.Find the missing number in an array; : 2. Reverse the bits of an integer; : 3. Using a MACRO function to output the byte stream; : 4. Detect a loop in a linked list; : 5. Reverse a string(protect the input& return a new string); : 6. Count the Ones of an integer; : 7. Endianness detection; : 8. Delete a node in a singly linked list and a double linked list; : 9. Even parity function;
|
r****i 发帖数: 528 | |
|
|
t***y 发帖数: 548 | |
b*****t 发帖数: 72 | 22 找工作长路漫漫,看来还是要继续努力,在失败中寻找和总结经验啊。与正在求职道路
上的各位版友共勉。当然大牛可以无视。
【在 b*****t 的大作中提到】 : Coding(都是挺基本的题,但是我有几个题有些bug,哎): : 1.Find the missing number in an array; : 2. Reverse the bits of an integer; : 3. Using a MACRO function to output the byte stream; : 4. Detect a loop in a linked list; : 5. Reverse a string(protect the input& return a new string); : 6. Count the Ones of an integer; : 7. Endianness detection; : 8. Delete a node in a singly linked list and a double linked list; : 9. Even parity function;
|
p**p 发帖数: 2493 | |
Q*******e 发帖数: 939 | 24 这SB就是想卡你吧
【在 b*****t 的大作中提到】 : 有点,这个印度哥们问的问题都挺tough的,好几个我都没回答上来,让我觉得很沮丧 : ,幸亏RB-TREE我还知道一些,所以大概说了一些。
|
b*****t 发帖数: 72 | 25 也许吧,他们组面我的就两个人,一个老美问得问题都挺简单基本的,但是这个印度哥
们我面残了。希望有机会再去面的时候不会碰到这种情况。
【在 Q*******e 的大作中提到】 : 这SB就是想卡你吧
|
a*****1 发帖数: 314 | 26 请高手 解释一下。下面是什么意思啊? 用C 写的??? 谢谢
3. Using a MACRO function to output the byte stream;
??? 什么意思啊? 有知道的不?
9. Even parity function;
int getParity(unsigned int n)
{
int parity = 0;
while (n)
{
parity = !parity;
n = n & (n - 1);
}
return parity;
}
10. Extract the payload part from a packet;
这个也不明白?? 有知道的吗??
11. Rounding function; 四舍五入
int round(double number)
{
return (number >= 0) ? (int)(number + 0.5) : (int)(number - 0.5);
}
【在 b*****t 的大作中提到】 : Coding(都是挺基本的题,但是我有几个题有些bug,哎): : 1.Find the missing number in an array; : 2. Reverse the bits of an integer; : 3. Using a MACRO function to output the byte stream; : 4. Detect a loop in a linked list; : 5. Reverse a string(protect the input& return a new string); : 6. Count the Ones of an integer; : 7. Endianness detection; : 8. Delete a node in a singly linked list and a double linked list; : 9. Even parity function;
|
k****7 发帖数: 37 | |
l*********o 发帖数: 736 | |