R******9 发帖数: 267 | 1 1. Given an increasing int array, find the smallest integer that is greater
than a given number.
我用的是C数组,interviewer又问如果输入的数组指针是空的,code会在哪行 core
dump
2. Given a log with entries starting with timestamp
2014-05-19 ...
2014-05-21 .....
# Get the number of occurrences of unique log entry for 2014-05-21.
# Find any log entries that have the letter A or B
3. class A;
class B;
class C {
A* a_;
B* b_;
...
};
implement constructor, copy constructor, = and destructor of C.
写 assignment operator 时出错了, 脑子短路没有new之前把原来的delete.. 于是就
被拒了。。
ps. 大家可以推荐一下多线程的教程吗?数学背景,希望可以系统的学习一下多线程。 |
M**a 发帖数: 848 | 2 这是什么职位啊?
直接在电话里说么。还是用什么网站?? |
R******9 发帖数: 267 | 3 SDE啊, 用 collabedit
【在 M**a 的大作中提到】 : 这是什么职位啊? : 直接在电话里说么。还是用什么网站??
|
y***n 发帖数: 1594 | |
w****r 发帖数: 15252 | 5 你可以google吧,放两台电脑,反正对方也看不见你
【在 y***n 的大作中提到】 : 这个可以现场google吗?
|
a****r 发帖数: 87 | |
j*****2 发帖数: 457 | 7 Advanced Programming in the UNIX Environment
google一下,网上ebook
chapter 11 and 12 |
R******9 发帖数: 267 | 8 Thank you :)
【在 a****r 的大作中提到】 : http://www.amazon.com/dp/1933988770/ref=wl_it_dp_o_pd_nS_ttl?_e : 个人觉得不错的C++多线程教程。google 一下,网上可以免费下载。
|
R******9 发帖数: 267 | 9 duo xie ~
【在 j*****2 的大作中提到】 : Advanced Programming in the UNIX Environment : google一下,网上ebook : chapter 11 and 12
|
p********d 发帖数: 357 | 10 第二个题log是sequential的吗?还有第二问找所有log含有A/B要怎么解?需要预处理
吗? |
R******9 发帖数: 267 | 11 grep ^$date $file | sort | uniq -c
grep -E 'A|B' $file
【在 p********d 的大作中提到】 : 第二个题log是sequential的吗?还有第二问找所有log含有A/B要怎么解?需要预处理 : 吗?
|
w********s 发帖数: 1570 | 12 记住用静音键盘,否则会被听到的。
【在 w****r 的大作中提到】 : 你可以google吧,放两台电脑,反正对方也看不见你
|