Redian新闻
>
求教材:FINANCIAL ACCOUNTING (8th) ISBN: 9780078025556
avatar
求教材:FINANCIAL ACCOUNTING (8th) ISBN: 9780078025556# Business - 商学院
d*v
1
小时候打过BCG疫苗,所以体检Tb皮试阳性。做了X-ray是阴性,医生非要填是class B,
latent TB infection.请问大家同样情况表上填的什么呢?
avatar
r*r
2
看着跟小狒狒一个样
avatar
S*t
3
演员都还不错, 制作也还可以,
虽然节奏慢,拖沓,国内剧都这样.当然也有情节上的硬伤。
我开始看pps上只有九集,一想这还不错,
总算有一个短一点的国内剧可以看看,
结果一看你们前面的帖子,又是几十集的
不过吸引我的主要还是他这里面包含的方方面面比较多,
不是主旋律共党一家,有点意思。
而且更重要的是我喜欢看坏人高一点点,
总是好人处处占先机,一切尽在掌握就看不下去了。
前面几集日本人确实够狠啊。
不知道后面怎么样。
ps,历史上有这样小股日本人潜伏这么多天攻城的吗?
我以为小日本都是见城就攻的.
好奇而以.
avatar
a*r
4
最近想update plan,顺便换一款pda
想实现一下两个功能
1,能tether做modem,连接计算机上网
2,能安装中文输入法。方便发短信到国内
最好待机时间长
blackberry 的哪款性价比较高?
请各位有使用经验的能详细推荐一下。
avatar
g*e
5
【 以下文字转载自 InterviewHackers 俱乐部 】
发信人: gate (离开之后,再见以前), 信区: InterviewHackers
标 题: find start point of loop from linked list
发信站: BBS 未名空间站 (Thu Jan 20 22:33:20 2011, 美东)
单链表找loop大家都会了,但是找start point of loop,要求o(n) time, o(1) space
,不能修改链表,感觉就不是那么容易了。
如果允许修改,很容易,reverse就可以了。不允许修改,谁有好办法嘛?
avatar
e*e
6
rt.
avatar
s*r
8
另外还有一本STAT.F/MGRS.USING MS.EXCEL (6th edition): ISBN: 9780137035199.
thanks
avatar
A*e
9
一样的情况,医生填的是no class A or class B

B,

【在 d******v 的大作中提到】
: 小时候打过BCG疫苗,所以体检Tb皮试阳性。做了X-ray是阴性,医生非要填是class B,
: latent TB infection.请问大家同样情况表上填的什么呢?

avatar
O*x
10
很萌

【在 r*******r 的大作中提到】
: 看着跟小狒狒一个样
avatar
m*e
11
日本人打中国,那是潜伏了多少年啊

【在 S*t 的大作中提到】
: 演员都还不错, 制作也还可以,
: 虽然节奏慢,拖沓,国内剧都这样.当然也有情节上的硬伤。
: 我开始看pps上只有九集,一想这还不错,
: 总算有一个短一点的国内剧可以看看,
: 结果一看你们前面的帖子,又是几十集的
: 不过吸引我的主要还是他这里面包含的方方面面比较多,
: 不是主旋律共党一家,有点意思。
: 而且更重要的是我喜欢看坏人高一点点,
: 总是好人处处占先机,一切尽在掌握就看不下去了。
: 前面几集日本人确实够狠啊。

avatar
t*m
12
sprint网络不支持中文

【在 a***r 的大作中提到】
: 最近想update plan,顺便换一款pda
: 想实现一下两个功能
: 1,能tether做modem,连接计算机上网
: 2,能安装中文输入法。方便发短信到国内
: 最好待机时间长
: blackberry 的哪款性价比较高?
: 请各位有使用经验的能详细推荐一下。

avatar
N*m
13
我都忘记了,c不允许list 索引by index?

space

【在 g**e 的大作中提到】
: 【 以下文字转载自 InterviewHackers 俱乐部 】
: 发信人: gate (离开之后,再见以前), 信区: InterviewHackers
: 标 题: find start point of loop from linked list
: 发信站: BBS 未名空间站 (Thu Jan 20 22:33:20 2011, 美东)
: 单链表找loop大家都会了,但是找start point of loop,要求o(n) time, o(1) space
: ,不能修改链表,感觉就不是那么容易了。
: 如果允许修改,很容易,reverse就可以了。不允许修改,谁有好办法嘛?

avatar
c*t
14
没帐号的话只能看几次
avatar
S*5
15
class B. that's fine, don't worry.
avatar
n*t
16
脖子上的袋子是什么东西?
avatar
A*h
17
这个戏的节奏是很好的。深度是需要进度做代价的,否则就是浮光掠影而已。
avatar
f*e
18
我貌似有发过中文短信
啥叫网络不支持中文啊?

【在 t******m 的大作中提到】
: sprint网络不支持中文
avatar
g*e
19
贴一个google到的,看上去应该是o(n)
Let x = the head of the list
Let y = some point on the loop (e.g. the place we detected the loop)
findloophead(x,y){
pointers t, a=x, b=next(y), c=y
while (1) {
t=midpoint (a,c)
if find (b,t,c) // t is in loop
then c=t
else a=next(t) // t is out of loop. move a to t
t= midpoint (b,c)
if find (a,t,c)
then c=t
else b=next(t)
if (a==b) return a;
if (a==c) or (b==c) return c;
}}
midpoint (e,f):
returns the pointer to the middle element (round toward front of list) ---
we can implement this with a pointer+double speed pointer walk
find (e,f,g):
returns true if we encounter f in a walk from e to g, otherwise false.

【在 N***m 的大作中提到】
: 我都忘记了,c不允许list 索引by index?
:
: space

avatar
o*y
20

帐号是免费的,我刚刚注了一个

【在 c****t 的大作中提到】
: 没帐号的话只能看几次
avatar
m*h
21
同意

【在 O*****x 的大作中提到】
: 很萌
avatar
g*y
22
你确定对方受到的不是乱码?

【在 f****e 的大作中提到】
: 我貌似有发过中文短信
: 啥叫网络不支持中文啊?

avatar
g*s
23
讲讲思路?

【在 g**e 的大作中提到】
: 贴一个google到的,看上去应该是o(n)
: Let x = the head of the list
: Let y = some point on the loop (e.g. the place we detected the loop)
: findloophead(x,y){
: pointers t, a=x, b=next(y), c=y
: while (1) {
: t=midpoint (a,c)
: if find (b,t,c) // t is in loop
: then c=t
: else a=next(t) // t is out of loop. move a to t

avatar
s*0
24
good !!!!
avatar
m*h
25
同问,像是什么气囊

【在 n********t 的大作中提到】
: 脖子上的袋子是什么东西?
avatar
h*i
26
短信设置成unicode就不会收到乱码了

【在 g*******y 的大作中提到】
: 你确定对方受到的不是乱码?
avatar
g*e
27
有点类似binary search,每次把内外的距离缩短一半

【在 g*********s 的大作中提到】
: 讲讲思路?
avatar
o*y
28
上面还有面试题...看见几个精算intern的面试题
1.How many taxis are there in New York City at any given point in time?
2.How much revenue has last week's football games generated?
有点BT啊...要是碰上了的话我估计就自己编出一堆assumption来然后根据这些自己定
的前提来估算了
avatar
t*s
29
够丑的

【在 r*******r 的大作中提到】
: 看着跟小狒狒一个样
avatar
t*m
30
在哪里设置unicode?我没有找到有这个选项呢

【在 h***i 的大作中提到】
: 短信设置成unicode就不会收到乱码了
avatar
z*e
31
这题用同余原理即可。
avatar
a*r
32
各位在讨论的时候请顺便推荐一款pda 手机
avatar
g*s
33
详细点?

【在 z****e 的大作中提到】
: 这题用同余原理即可。
avatar
a*r
34
有用过blackberry8830的吗?
发现它是cdma/gsm双制手机,有unlocked 的SIM ,
不知道在国内插sim卡用怎么样?
能发短信吗?
好像有人说只能打电话
avatar
g*e
35
co ask

【在 g*********s 的大作中提到】
: 详细点?
avatar
l*e
36
任何一款的htc手机都可以实现楼主需要的功能
avatar
z*e
37
*p1 step size 1, *p2 step size 2, to find node where the two meet.
then, set p1 to head, and drive p1 and p2 to move on 1 step each time
simultaneously.
when p1 meet p2 again, that's the starting point of the loop.
用同余可以证明。
avatar
g*s
38
how u know they would meet again?

【在 z****e 的大作中提到】
: *p1 step size 1, *p2 step size 2, to find node where the two meet.
: then, set p1 to head, and drive p1 and p2 to move on 1 step each time
: simultaneously.
: when p1 meet p2 again, that's the starting point of the loop.
: 用同余可以证明。

avatar
z*e
39
这个都不知道的话还玩啥?

【在 g*********s 的大作中提到】
: how u know they would meet again?
avatar
g*e
40
高,收我为徒吧

【在 z****e 的大作中提到】
: *p1 step size 1, *p2 step size 2, to find node where the two meet.
: then, set p1 to head, and drive p1 and p2 to move on 1 step each time
: simultaneously.
: when p1 meet p2 again, that's the starting point of the loop.
: 用同余可以证明。

avatar
P*e
41
要用同余,需要先证明p2和p1在圈内行走的历程只差一圈。

【在 z****e 的大作中提到】
: *p1 step size 1, *p2 step size 2, to find node where the two meet.
: then, set p1 to head, and drive p1 and p2 to move on 1 step each time
: simultaneously.
: when p1 meet p2 again, that's the starting point of the loop.
: 用同余可以证明。

avatar
g*e
42
一个走一步,另一个走两步,fast pointer赶上最多只需要n-1次. 所以一圈就够了

【在 P********e 的大作中提到】
: 要用同余,需要先证明p2和p1在圈内行走的历程只差一圈。
avatar
X*r
43
Not necessarily one round. It could be multiple rounds.
(but still works nevertheless)

【在 P********e 的大作中提到】
: 要用同余,需要先证明p2和p1在圈内行走的历程只差一圈。
avatar
P*e
44
这个需要证明吧

一个走一步,另一个走两步,fast pointer赶上最多只需要n-1次. 所以一圈就够了

【在 g**e 的大作中提到】
: 一个走一步,另一个走两步,fast pointer赶上最多只需要n-1次. 所以一圈就够了
avatar
P*e
45
可以多圈吗?能给个例子吗

【在 X****r 的大作中提到】
: Not necessarily one round. It could be multiple rounds.
: (but still works nevertheless)

avatar
z*e
46
我是绝对菜鸟,下家还没找到呢。
版上师傅们这么多,随便拜一个都比我强万倍。

【在 g**e 的大作中提到】
: 高,收我为徒吧
avatar
X*r
47
0->1->2->3->4->5->6->7->8->9->8

【在 P********e 的大作中提到】
: 可以多圈吗?能给个例子吗
avatar
P*e
48
谢谢,出来了

0->1->2->3->4->5->6->7->8->9->8

【在 X****r 的大作中提到】
: 0->1->2->3->4->5->6->7->8->9->8
avatar
g*e
49
假设loop length = n,当slow和fast两pointer都进入loop的时候,它们之间最大的距
离是n-1,那么fast追上最多需要n-1 step,也就是slow pointer走一圈之内

【在 P********e 的大作中提到】
: 这个需要证明吧
:
: 一个走一步,另一个走两步,fast pointer赶上最多只需要n-1次. 所以一圈就够了

avatar
g*s
50
ok. i see what u mean now. but i still don't think it's correct.
i'll make a new post to discuss ur approach.

【在 z****e 的大作中提到】
: 这个都不知道的话还玩啥?
avatar
z*e
51
这是数学题啊。
别考虑什么linked list,把图画出来先:
avatar
P*e
52
赞详细,我当初把k和d代错了,所以推出一圈:)

【在 z***e 的大作中提到】
: 这是数学题啊。
: 别考虑什么linked list,把图画出来先:
:

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