由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Cloudera面经
相关主题
multithread app的design要注意哪些问题? (转载)有些面试题是够扯蛋的
新鲜电面经二爷的那个Longest Consecutive Sequence的新解法?
multithreading/concurrency 是常考题吗, 如何准备?发uber电面面经,求onsite面经和建议
careerup 150 上一道deadlock 题面过F的童鞋,能讲讲答bahaviour的题,要注意什么?
break deadlock in a live process without killing the process一道onsite题目求指导
贡献两道google面试题请教一个DP题
Amazon一道synchronization的面试题上周Onsite题目及不爽之事
攒人品之facebook电面面经问几个multithreading的问题
相关话题的讨论汇总
话题: spin话题: metric话题: public话题: int话题: string
进入JobHunting版参与讨论
1 (共1页)
l***y
发帖数: 21
1
电面:
1. 实现一个histogram, 能inc/get每种metric的counter.
void incCounter(String metric)
int getCounter(String metric)
2. followup: 修改以上histogram应付并发读写
onsite:
1. how to create a generic singleton class
2. 求integer流中最近k条数据的avg
public class KAvg {
public KAvg(int k );
public void add(int x);

public int getKAvg();
}
followup: 并发add/getAvg
3. 用AtomicLong或compareAndSwap原语实现spin_lock, spin_semaphore, reentrant_
spin_lock
描述spin_lock的self deadlock情况
4. design whatsapp
5. behavior/ team conflict/strength/weakpoint
6. go through background
e***a
发帖数: 1661
2
did u work out these concurrency programming questions?
l***y
发帖数: 21
3
yes, lz is an expert on concurrency.

【在 e***a 的大作中提到】
: did u work out these concurrency programming questions?
z******s
发帖数: 197
4
赞分享 offer情况如何?

【在 l***y 的大作中提到】
: 电面:
: 1. 实现一个histogram, 能inc/get每种metric的counter.
: void incCounter(String metric)
: int getCounter(String metric)
: 2. followup: 修改以上histogram应付并发读写
: onsite:
: 1. how to create a generic singleton class
: 2. 求integer流中最近k条数据的avg
: public class KAvg {
: public KAvg(int k );

a***u
发帖数: 383
5
楼主大牛,最后去哪里了?
x****y
发帖数: 252
6
牛人。
请教:如何准备concurrency programming?
1 (共1页)
进入JobHunting版参与讨论
相关主题
问几个multithreading的问题break deadlock in a live process without killing the process
面经+一点个人体会贡献两道google面试题
[teradata面经] hadoop engineerAmazon一道synchronization的面试题
低频题小节攒人品之facebook电面面经
multithread app的design要注意哪些问题? (转载)有些面试题是够扯蛋的
新鲜电面经二爷的那个Longest Consecutive Sequence的新解法?
multithreading/concurrency 是常考题吗, 如何准备?发uber电面面经,求onsite面经和建议
careerup 150 上一道deadlock 题面过F的童鞋,能讲讲答bahaviour的题,要注意什么?
相关话题的讨论汇总
话题: spin话题: metric话题: public话题: int话题: string