Redian新闻
>
这个算不算成功转行的例子?
avatar
这个算不算成功转行的例子?# Biology - 生物学
c*g
1
如题 或者说是PhD毕业后第一份工作在美国以外的话,以后都很难再在美国找到教职了?
谢谢前辈们的解答!
avatar
b*e
2
那位大侠给一个?
再给一个linked list to balance BST的code吧
thanks
avatar
y*i
4
我有朋友刚从欧洲move回美国藤校
avatar
y*e
5
BST to Doubly Linked List:
public LinkedList convert(BTree tree) {
LinkedList list = new LinkedList();
convert(tree, list);
return list;
}
private void convert(BTree tree, LinkedList list) {
if (tree != null) {
convert(tree.getLeftChild(), list);
LinkedListNode node = new LinkedListNode(tree.getValue());
list.add(node); // append to tail
convert(tree.getRightChild(), list);
}
}
看起来很眼熟把?就是in-order的tree traverse而已。
至于LinkedList的实现。。
public cl

【在 b********e 的大作中提到】
: 那位大侠给一个?
: 再给一个linked list to balance BST的code吧
: thanks

avatar
I*a
6
只要不是千老就是稳拿,
avatar
M*o
7
Everything is possible.
avatar
y*e
8
Doubly Linked List to Balanced BST:
取LinkedList的中间Node,那就是BST的Root。LinkedList的前半部分,就是BST的Left
Child;后半部分,就是BST的
Right Child。用递归。
public BTree convert(LinkedList list) {
if (list.size() > 0) {
// partition it into three parts: left, middle, right
Partition parts = partition(list);
LinkedList leftList = parts.getLeftSubList();
LinkedList rightList = parts.getRightSubList();
LinkedListNode middle = parts.getMiddle();
BTree root = new BTree(

【在 b********e 的大作中提到】
: 那位大侠给一个?
: 再给一个linked list to balance BST的code吧
: thanks

avatar
z*4
9
同一级的,好像听过这个名字,看照片却没印象
avatar
c*g
10
谢谢楼上两位前辈!
avatar
b*n
11
如果不是sorted linked list,为什么不用linked list的root当BST的root?

Left

【在 y*********e 的大作中提到】
: Doubly Linked List to Balanced BST:
: 取LinkedList的中间Node,那就是BST的Root。LinkedList的前半部分,就是BST的Left
: Child;后半部分,就是BST的
: Right Child。用递归。
: public BTree convert(LinkedList list) {
: if (list.size() > 0) {
: // partition it into three parts: left, middle, right
: Partition parts = partition(list);
: LinkedList leftList = parts.getLeftSubList();
: LinkedList rightList = parts.getRightSubList();

avatar
c*m
12
这个才是她能被MIT MBA录取的真正原因
一个PhD没有任何管理经验,连UCLA MBA都进不去
President, Co-founder
Advanced Degree Consulting Club at UCLA
April 2010 – February 2012 (1 year 11 months)
• Created a community of future consultants and business leaders
with advanced degrees and provide a platform for information exchange and
experience sharing.
• Led the team and generated substantial revenue by undertaking
consulting projects with local consulting firms.
• Bridge the gap between academia and consulting industry by hosting L
.E.K consulting career fair.
Member
Management Consulting Association at Anderson School of Management
January 2009 – February 2012 (3 years 2 months)
Healthcare Equity Analyst Internship
LifeSci Advisors
January 2010 – March 2011 (1 year 3 months)
• Performed market research to assess the commercial viability of
an emergent product in treatment of chronic renal disease.
• Evaluated the medical technology and its competition, using
publications, review articles, and discussions with doctors and scientists.
• Analyzed products chances for clinical and regulatory success,
identifying potential pitfalls.

【在 a*******k 的大作中提到】
: 武大本科,UCLA生物博士读了五年半,在一家不到50人的小公司工作两年后今年夏天在
: MIT读全球排名第一的Operation/Engineering MBA。
: http://www.linkedin.com/pub/cong-cathy-fang/13/7b2/b52

avatar
f*e
13
我们学校某专业把offer给了一位在德国工作的中国同胞。
avatar
y*e
14
因为题目说了,要是 Balanced 的 BST

【在 b*****n 的大作中提到】
: 如果不是sorted linked list,为什么不用linked list的root当BST的root?
:
: Left

avatar
a*o
15
guys, think big
Let me give you a real example:
Xudong Yin
北大生物本科
斯坦福的Oncology Ph.D.
转行
MBA HBS
现在
诺华 novartis 大中国地区主席

【在 a*******k 的大作中提到】
: 武大本科,UCLA生物博士读了五年半,在一家不到50人的小公司工作两年后今年夏天在
: MIT读全球排名第一的Operation/Engineering MBA。
: http://www.linkedin.com/pub/cong-cathy-fang/13/7b2/b52

avatar
c*g
16
谢谢答复!

【在 f*****e 的大作中提到】
: 我们学校某专业把offer给了一位在德国工作的中国同胞。
avatar
a*o
17
who told you that
every year Wharton accepts several Ph.D. without real experiences
guys, 有点自信,好不好

【在 c**m 的大作中提到】
: 这个才是她能被MIT MBA录取的真正原因
: 一个PhD没有任何管理经验,连UCLA MBA都进不去
: President, Co-founder
: Advanced Degree Consulting Club at UCLA
: April 2010 – February 2012 (1 year 11 months)
: • Created a community of future consultants and business leaders
: with advanced degrees and provide a platform for information exchange and
: experience sharing.
: • Led the team and generated substantial revenue by undertaking
: consulting projects with local consulting firms.

avatar
M*l
18
最后找工作时的那一份工作,最好在美国吧。当然差别或许不大。同等条件拿到onsite
的机会(可能)稍微大一些。
avatar
p*m
19
he is an ex BCGer. that's what made him N chairman (and ex AZ chairman too)
I guess...

【在 a*******o 的大作中提到】
: guys, think big
: Let me give you a real example:
: Xudong Yin
: 北大生物本科
: 斯坦福的Oncology Ph.D.
: 转行
: MBA HBS
: 现在
: 诺华 novartis 大中国地区主席

avatar
c*g
20
谢谢前辈指点!

onsite

【在 M*****l 的大作中提到】
: 最后找工作时的那一份工作,最好在美国吧。当然差别或许不大。同等条件拿到onsite
: 的机会(可能)稍微大一些。

avatar
a*o
21
He made himself, not matter who he worked for, BCG or not. hehe
天时,地利,人和

)

【在 p*****m 的大作中提到】
: he is an ex BCGer. that's what made him N chairman (and ex AZ chairman too)
: I guess...

avatar
x*o
22
NIH的Wu ling-gang 好像去马普所做过博后,然后回美国当教授的
avatar
n*7
23
她算一直很努力的人了,也会把握机会,这种人不管做什么都不会差了

【在 a*******k 的大作中提到】
: 武大本科,UCLA生物博士读了五年半,在一家不到50人的小公司工作两年后今年夏天在
: MIT读全球排名第一的Operation/Engineering MBA。
: http://www.linkedin.com/pub/cong-cathy-fang/13/7b2/b52

avatar
e*e
24
请问这位同胞水平是不是的确比其他人高出一截呢?

【在 f*****e 的大作中提到】
: 我们学校某专业把offer给了一位在德国工作的中国同胞。
avatar
d*h
25
知道的有两个生物相关fresh phd,一个去harvard MBA,一个harvard law JD

【在 a*******k 的大作中提到】
: 武大本科,UCLA生物博士读了五年半,在一家不到50人的小公司工作两年后今年夏天在
: MIT读全球排名第一的Operation/Engineering MBA。
: http://www.linkedin.com/pub/cong-cathy-fang/13/7b2/b52

avatar
g*g
26
这个要看你做得怎么样了。还有方向是不是热门。如果能拿比美国好的条件,做出东西
来,回美国也不是不可能。

【在 e*******e 的大作中提到】
: 请问这位同胞水平是不是的确比其他人高出一截呢?
avatar
a*l
27
她要是知道在波士顿瞎混的很cheap的女生最后都能去斯隆的话,
肯定会很郁闷的
而且估计还是跟他一个班的
那里现在越来越鱼龙混杂了。。。
avatar
n*r
28
到牛校/研究所做的很好一样有机会。

了?

【在 c*****g 的大作中提到】
: 如题 或者说是PhD毕业后第一份工作在美国以外的话,以后都很难再在美国找到教职了?
: 谢谢前辈们的解答!

avatar
c*g
29
谢谢楼上几位前辈!
avatar
m*g
30
方向也比较重要,我朋友的一个学校把位置给了在新西兰工作的人,因为他的方向系里
很喜欢。当然人家做的也不错。
avatar
h*0
31
欧洲是天堂,都说天堂好,但都是是道听途说,因为去了了天堂回来不容易。
没有第一手资料。

了?

【在 c*****g 的大作中提到】
: 如题 或者说是PhD毕业后第一份工作在美国以外的话,以后都很难再在美国找到教职了?
: 谢谢前辈们的解答!

avatar
n*p
32
如果你不是学术明星的话,从欧洲回美国会很困难。

了?

【在 c*****g 的大作中提到】
: 如题 或者说是PhD毕业后第一份工作在美国以外的话,以后都很难再在美国找到教职了?
: 谢谢前辈们的解答!

avatar
a*u
33
说天堂是去旅游几天的人说的。真正生活又是另外一回事。

【在 h********0 的大作中提到】
: 欧洲是天堂,都说天堂好,但都是是道听途说,因为去了了天堂回来不容易。
: 没有第一手资料。
:
: 了?

avatar
c*g
34
谢谢前辈们的答复!
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。