由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - A家intern 面经,求祝福
相关主题
怎么计算两天之间的时间间隔攒人品,amazon面经
Amazon电面面经(1面和2面)Bloomberg面经(onsite)
BST to double linked list的code今天没心情看书,上来聊聊我这1个半月都干嘛了
Rejected After 2nd Phone Interview with Amazon在版上看到的G题
攒人品,发MS面筋求解答. Tree, LinkedList, Binary Tree和BST的实际应用例子
an interview questionL面经,请大家帮我看看
新鲜Amazon面经word search BST 解法,大测试超时,请大家指点迷津
问个面试题,加些小抱怨restful server的一道设计题
相关话题的讨论汇总
话题: sum话题: int话题: break话题: year话题: case
进入JobHunting版参与讨论
1 (共1页)
t*********n
发帖数: 89
1
10分钟前面完的,大家将就看看
白人小伙, project 5min
1. 检查BST
2. 计算逆波兰表达式
3. 检查两个日期之间的天数差距:
int calculateDays(int day1, int month1, int year1, int day2. int month2, int
year2)
不知道哪里人的口音,很奇怪,经常不知道他要问什么,project 5min . Linkedlist
vs Array
1. 数组中找两数sum为一个数
2. 打印Fib(N) ,如果n为奇数,打印"Fizz" fib(n) 次,如果n为偶数,打印“Buzz”
fib(n)次。
然后抱怨了下波士顿的天气...结束
两个面试官 都说了,HR will contact you by the end of next week. 希望是好消息
j*****y
发帖数: 1071
2
bless
int total_day(int day, int month, int year)
{
int sum = 0;
sum += (year - 1) * 365 + (year - 1) / 4;
switch(month)
{
case 1:
break;
case 2:
sum += 31;
break;
case 3:
sum += 31 + 28;
break;
case 4:
sum += 31 * 2 + 28;
break;
case 5:
sum += 31 * 2 + 30 + 28;
break;
case 6:
sum += 31 * 3 + 30 + 28;
break;
case 7:
sum += 31 * 3 + 30 * 2 + 28;
break;
case 8:
sum += 31 * 4 + 30 * 2 + 28;
break;
case 9:
sum += 31 * 5 + 30 * 2 + 28;
break;
case 10:
sum += 31 * 5 + 30 * 3 + 28;
break;
case 11:
sum += 31 * 6 + 30 * 3 + 28;
break;
case 12:
sum += 31 * 6 + 30 * 4 + 28;
break;
default:
break;
}
sum += day;
if(month >= 3 && year % 4 == 0)
{
++sum;
}
return sum;
}
int day_diff(int day1, int month1, int year1, int day2, int month2, int
year2)
{
return abs(total_day(day1, month1, year1) - total_day(day2, month2,
year2));

}

int
Linkedlist

【在 t*********n 的大作中提到】
: 10分钟前面完的,大家将就看看
: 白人小伙, project 5min
: 1. 检查BST
: 2. 计算逆波兰表达式
: 3. 检查两个日期之间的天数差距:
: int calculateDays(int day1, int month1, int year1, int day2. int month2, int
: year2)
: 不知道哪里人的口音,很奇怪,经常不知道他要问什么,project 5min . Linkedlist
: vs Array
: 1. 数组中找两数sum为一个数

r*********n
发帖数: 4553
3
leap year算错了吧
from wikipedia
if year is divisible by 400 then
is_leap_year
else if year is divisible by 100 then
not_leap_year
else if year is divisible by 4 then
is_leap_year
else
not_leap_year

【在 j*****y 的大作中提到】
: bless
: int total_day(int day, int month, int year)
: {
: int sum = 0;
: sum += (year - 1) * 365 + (year - 1) / 4;
: switch(month)
: {
: case 1:
: break;
: case 2:

c*****a
发帖数: 808
4
计算逆波兰表达式是calculate postfix expression吗,感觉挺麻烦的
j*****y
发帖数: 1071
5
哈哈,我以为只要 被 4整除就是了,

leap year算错了吧
from wikipedia
if year is divisible by 400 then
is_leap_year
else if year is divisible by 100 then
not_leap_year
else if year is divisible by 4 then
is_leap_year
else
not_leap_year

【在 r*********n 的大作中提到】
: leap year算错了吧
: from wikipedia
: if year is divisible by 400 then
: is_leap_year
: else if year is divisible by 100 then
: not_leap_year
: else if year is divisible by 4 then
: is_leap_year
: else
: not_leap_year

j*****y
发帖数: 1071
6
需要加一个 sub routine
int numberOfLeapYear(int year)

【在 j*****y 的大作中提到】
: 哈哈,我以为只要 被 4整除就是了,
:
: leap year算错了吧
: from wikipedia
: if year is divisible by 400 then
: is_leap_year
: else if year is divisible by 100 then
: not_leap_year
: else if year is divisible by 4 then
: is_leap_year

r*********n
发帖数: 4553
7
是麻烦,特别是还要考虑各种irregular input的情况

【在 c*****a 的大作中提到】
: 计算逆波兰表达式是calculate postfix expression吗,感觉挺麻烦的
g*******d
发帖数: 495
8
请问楼主是什么时候投的简历,什么时候phone screen/phone interview的?
h*********y
发帖数: 386
9
big bless~~
1 (共1页)
进入JobHunting版参与讨论
相关主题
restful server的一道设计题攒人品,发MS面筋
雅虎 user 组面经an interview question
问一个数据结构的问题新鲜Amazon面经
Offer 选择问个面试题,加些小抱怨
怎么计算两天之间的时间间隔攒人品,amazon面经
Amazon电面面经(1面和2面)Bloomberg面经(onsite)
BST to double linked list的code今天没心情看书,上来聊聊我这1个半月都干嘛了
Rejected After 2nd Phone Interview with Amazon在版上看到的G题
相关话题的讨论汇总
话题: sum话题: int话题: break话题: year话题: case