avatar
r*u
1
问了问做过的projects,再问问了解哪些语言,问了C++的virtual function。
最后问了一个算法题,找出一个整数数组中第一个不重复的元素的index。
我回答用两个hashtable,一个存放unique elements,一个存放repeated elements。
有没有更好的办法?
avatar
d*2
2
PP at Apr. 30 2010,
LUD Mar 03 2010
approved email: May 05 2010
感谢众多版友支持:
背景介绍如下:
Paper :20+ (First author English 6 and Chinese 3)
Citation: 400+ (300+ independent)
Peer reviews : 20+ ( English journal 8 time + and Chinese 10+, total
30 including second review for same paper)
推荐信 7 (US 4, Canada 1 and EU 2 independent 4)
Claim:
Contribution: 首先提了有关他人review 对我文章的大量篇幅的引用,然后重点提了
有一片我
发表在业内权威杂志的highlight paper. 说明他如何如何被广泛的引用,引导了本研
究领域,之
后谈到课题支撑,有点像是奖励的Funding 支撑文件,获得%数据(Thanks Laoda 的点
子),
best
avatar
f*h
3
什么职位?
avatar
u*9
4
恭喜

【在 d********2 的大作中提到】
: PP at Apr. 30 2010,
: LUD Mar 03 2010
: approved email: May 05 2010
: 感谢众多版友支持:
: 背景介绍如下:
: Paper :20+ (First author English 6 and Chinese 3)
: Citation: 400+ (300+ independent)
: Peer reviews : 20+ ( English journal 8 time + and Chinese 10+, total
: 30 including second review for same paper)
: 推荐信 7 (US 4, Canada 1 and EU 2 independent 4)

avatar
r*u
5
webkit team

【在 f**h 的大作中提到】
: 什么职位?
avatar
l*g
6
woh~~现在真喜欢多看这种好消息,恭喜啦~~
avatar
h*k
7
hash map, 记录出现的次数。

【在 r***u 的大作中提到】
: 问了问做过的projects,再问问了解哪些语言,问了C++的virtual function。
: 最后问了一个算法题,找出一个整数数组中第一个不重复的元素的index。
: 我回答用两个hashtable,一个存放unique elements,一个存放repeated elements。
: 有没有更好的办法?

avatar
d*2
8
包子已经发完,按照先后顺序,另外特别给了Laoda555, Aprilsummer, BanCDM, ....
以表示感谢。
对不起,已经没有包子了,但还是感谢你们的支持。
gkhjqx
wvabc
mazeka
avatar
p*7
9
bitmap 就可以了,都不用记录次数,2个bit就表示一个整数,0表示没有,1表示出现
一次,多余一次就是2了。
遍历一次之后再遍历第二次,第一个次数是1的就是答案
avatar
d*2
10
整理一下便于查看:
PP at Apr. 30 2010,
LUD Mar 03 2010
approved email: May 05 2010
感谢众多版友支持:
背景介绍如下:
Paper :20+ (First author English 6 and Chinese 3)
Citation: 400+ (300+ independent)
Peer reviews : 20+ ( English journal 8 time + and Chinese 10+, total
30 including second review for same paper)
推荐信 7 (US 4, Canada 1 and EU 2 independent 4)
Claim:
Contribution:
首先提了有关他人review 对我文章的大量篇幅的引用,然后重点提了
有一片我 发表在业内权威杂志的highlight paper. 说明他如何如何被广泛的引用,引
导了本研 究领域,之后谈到课题支撑,有点像是奖励的Funding 支撑文件,获得%数据
(Thanks Laoda 的
avatar
x*3
11
这个方法好,programming perl上是不是有讲到这个?

【在 p********7 的大作中提到】
: bitmap 就可以了,都不用记录次数,2个bit就表示一个整数,0表示没有,1表示出现
: 一次,多余一次就是2了。
: 遍历一次之后再遍历第二次,第一个次数是1的就是答案

avatar
d*2
12
特别谢谢niceboat
包子已经发放
avatar
p*7
13
是的

【在 x******3 的大作中提到】
: 这个方法好,programming perl上是不是有讲到这个?
avatar
j*u
14
bless
avatar
v*w
15
how about starting from end and traversing back to the begining, record the
latest element which appears once once
in this way, we need only use 1 bit for each integer and only one traverse

【在 p********7 的大作中提到】
: bitmap 就可以了,都不用记录次数,2个bit就表示一个整数,0表示没有,1表示出现
: 一次,多余一次就是2了。
: 遍历一次之后再遍历第二次,第一个次数是1的就是答案

avatar
m*a
16
GX Again!
avatar
r*u
17

the
how do you maintain this information?

【在 v********w 的大作中提到】
: how about starting from end and traversing back to the begining, record the
: latest element which appears once once
: in this way, we need only use 1 bit for each integer and only one traverse

avatar
r*l
18
恭喜,很强大
avatar
v*w
19
Given a[n]
int *p=&a[n-1];
hashtable(or bitmap) ht;
for i=n-2:-1:0
if ht.contians(a[i])
{if (a[i]==*p) p=0;}
else {p=&a[i];ht.add(a[i]);}
if (p) return *p
else noelementIndicator

【在 r***u 的大作中提到】
:
: the
: how do you maintain this information?

avatar
d*e
20
cong
avatar
M*u
21
cong

【在 d********2 的大作中提到】
: PP at Apr. 30 2010,
: LUD Mar 03 2010
: approved email: May 05 2010
: 感谢众多版友支持:
: 背景介绍如下:
: Paper :20+ (First author English 6 and Chinese 3)
: Citation: 400+ (300+ independent)
: Peer reviews : 20+ ( English journal 8 time + and Chinese 10+, total
: 30 including second review for same paper)
: 推荐信 7 (US 4, Canada 1 and EU 2 independent 4)

avatar
l*t
22
congrats!
avatar
j*e
23
Zan LZ Xin Tai
avatar
a*u
24
thanks!
cong!
avatar
A*d
25
cong
avatar
t*6
26
gongxi!
avatar
b*M
27
Congratulations and many thanks for baozi.
Hope you get your GC soon(maybe 2 months )

【在 d********2 的大作中提到】
: 包子已经发完,按照先后顺序,另外特别给了Laoda555, Aprilsummer, BanCDM, ....
: 以表示感谢。
: 对不起,已经没有包子了,但还是感谢你们的支持。
: gkhjqx
: wvabc
: mazeka

avatar
y*c
28
真好,恭喜!!
avatar
s*u
29
恭喜!一个问题
关键词的那部分,是用google检索么? 标出文章的位置是
什么目的呢?

【在 d********2 的大作中提到】
: PP at Apr. 30 2010,
: LUD Mar 03 2010
: approved email: May 05 2010
: 感谢众多版友支持:
: 背景介绍如下:
: Paper :20+ (First author English 6 and Chinese 3)
: Citation: 400+ (300+ independent)
: Peer reviews : 20+ ( English journal 8 time + and Chinese 10+, total
: 30 including second review for same paper)
: 推荐信 7 (US 4, Canada 1 and EU 2 independent 4)

avatar
w*e
30
gx
thanks GOD.

【在 d********2 的大作中提到】
: PP at Apr. 30 2010,
: LUD Mar 03 2010
: approved email: May 05 2010
: 感谢众多版友支持:
: 背景介绍如下:
: Paper :20+ (First author English 6 and Chinese 3)
: Citation: 400+ (300+ independent)
: Peer reviews : 20+ ( English journal 8 time + and Chinese 10+, total
: 30 including second review for same paper)
: 推荐信 7 (US 4, Canada 1 and EU 2 independent 4)

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