由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 非常规 A家 店面题
相关主题
question 2: o(1) euque and dequeue?MS phone interview
面试的时候可以用STL吗有人Amazon面试需要写off-line的两个小时的code的吗?
Implement an web-based dictionary lookup帮忙看下简历
A家面试题[JOBS]软件(测试)工程师,最好有一定science背景 (转载)
Expedia Hiring for SQL Server Developer (转载)Coding test: you can get a job if you can provide a solution
我们公司在招聘 Software Implementation engineer (转载)Looking for Sr. Software Engineer, San Francisco
面试题Looking for Sr. Software Engineer, San Francisco
刚刚Amazon的第二轮interview发两个职位,攒rp
相关话题的讨论汇总
话题: public话题: counter话题: get话题: inc话题: 非常规
进入JobHunting版参与讨论
1 (共1页)
e***a
发帖数: 1661
1
要求实现一个 time window,get() 返回最近一小时 inc() 被调用的次数。
并要求对 get() 做 unit testing,
我用了 JUnit 和 Mickito (verify(..), times(..)),但效果不好。
public interface Counter {
public void inc();
public long get();
}
public class OneHourCounter implements Counter {
...
public void inc() {...}
public long get() {...}
}
a*****u
发帖数: 1712
2
这为什么是非常规题?很常见啊
c*****n
发帖数: 95
3
此题挂了不少人啊。
x*****n
发帖数: 195
4
开个数组,假设以秒为单位,长度3600。sum[i]存当前所有调用的总数,sum[3600+i]
- sum[i]就是要求的过去一小时总调用数。数组具体用循环数组维护好了。

【在 a*****u 的大作中提到】
: 这为什么是非常规题?很常见啊
1 (共1页)
进入JobHunting版参与讨论
相关主题
发两个职位,攒rpExpedia Hiring for SQL Server Developer (转载)
Job Position: Sr. Java Developer我们公司在招聘 Software Implementation engineer (转载)
Java Developer position面试题
QA need (Zynga)刚刚Amazon的第二轮interview
question 2: o(1) euque and dequeue?MS phone interview
面试的时候可以用STL吗有人Amazon面试需要写off-line的两个小时的code的吗?
Implement an web-based dictionary lookup帮忙看下简历
A家面试题[JOBS]软件(测试)工程师,最好有一定science背景 (转载)
相关话题的讨论汇总
话题: public话题: counter话题: get话题: inc话题: 非常规