L*i
2 楼
我的答案是否定的。首先,天下乌鸦一般黑,周董玩过那么多女人,怎么可能被一个93
年的小模特给拴一辈子。而且即便与昆凌结了婚生了小周周,周围想投怀送抱的女人岂
是你我凡人能数清楚的,从这里看,昆凌天王嫂的地位其实并没有那么稳固,用风雨飘
摇这个词来形容我觉得是不过分的。
这年头,就拿普通人来说,两个人就算是结了婚生了孩子,其实也并不能说明什么,孩
子并不是婚姻长久的砝码。如果认为用孩子可以拴住男人,那众所周知的梁洛施呢,为
某凯生了三个大胖小子之后,还不是一样被扫地出门,被甩了。所以生了孩子并不表示
自己就会是男人的最后一个女人,要不然怎么会有“出轨”、“小三”、“情人”这些
词呢,哈哈。
昆凌绝不会是周董最后一个女人,玩音乐的人思想都很开放,周董找一个比自己小十几
岁的小姑娘,无非就是想要多生宝宝罢了。试想,如果周董找的是跟自己同龄或只小一
点的,那生孩子的时候不就成了高龄产妇了吗,如何满足周董想要生很多宝宝的愿望呢
。从这个角度来看,如果昆凌只是一个生孩子工具的话,那她绝不是周董最后一个女人。
年的小模特给拴一辈子。而且即便与昆凌结了婚生了小周周,周围想投怀送抱的女人岂
是你我凡人能数清楚的,从这里看,昆凌天王嫂的地位其实并没有那么稳固,用风雨飘
摇这个词来形容我觉得是不过分的。
这年头,就拿普通人来说,两个人就算是结了婚生了孩子,其实也并不能说明什么,孩
子并不是婚姻长久的砝码。如果认为用孩子可以拴住男人,那众所周知的梁洛施呢,为
某凯生了三个大胖小子之后,还不是一样被扫地出门,被甩了。所以生了孩子并不表示
自己就会是男人的最后一个女人,要不然怎么会有“出轨”、“小三”、“情人”这些
词呢,哈哈。
昆凌绝不会是周董最后一个女人,玩音乐的人思想都很开放,周董找一个比自己小十几
岁的小姑娘,无非就是想要多生宝宝罢了。试想,如果周董找的是跟自己同龄或只小一
点的,那生孩子的时候不就成了高龄产妇了吗,如何满足周董想要生很多宝宝的愿望呢
。从这个角度来看,如果昆凌只是一个生孩子工具的话,那她绝不是周董最后一个女人。
z*9
3 楼
住在大农村休斯顿想在后院养鸡,不知是否可行?希望指点谢谢!
l*n
4 楼
BBS上G家的人也不少啊。
主要是Apple的问题来回来去都已经被大家讲的很透彻了。
主要是Apple的问题来回来去都已经被大家讲的很透彻了。
m*6
6 楼
你要去问一下你们CITY有什么规定。
i*b
11 楼
所谓 stream, 就是说real time data, 不间断。
是个有限空间解决无限数据流的问题。
全都存肯定不行。
空间复杂度的问题不用考虑。 big O 在这个问题里不管用
是个有限空间解决无限数据流的问题。
全都存肯定不行。
空间复杂度的问题不用考虑。 big O 在这个问题里不管用
z*e
13 楼
Use two heaps. The left heap is a max heap, the right heap is a min heap.
Between the two heap, there is a number indicating the current median number
. When a new number comes in, we take the following operations (notice that
the two heap must have the same number of values, actually the left heap
stores all the numbers smaller than the median, and the right heap contains
the numbers larger than the median), we should also have a flag variable to
indicate whether the current median is in the s
Between the two heap, there is a number indicating the current median number
. When a new number comes in, we take the following operations (notice that
the two heap must have the same number of values, actually the left heap
stores all the numbers smaller than the median, and the right heap contains
the numbers larger than the median), we should also have a flag variable to
indicate whether the current median is in the s
w*l
15 楼
问一下: 什么是RBT啊?具体过程怎么样呢?
另外,如果用两个堆,这两个堆怎么初始化呢?
另外,如果用两个堆,这两个堆怎么初始化呢?
b*v
19 楼
假设这种情形:
stream是1,2,3,4, ...,也就是所有自然数按次序进入stream
如果你的RBT最多保存100个节点,则在插入101时,你会删除1和100
可是当stream到199时,这时的median应该是100,可是100已经不在你的RBT里面了
【在 x******3 的大作中提到】
: Red Black Tree, 就是一种balanced search tree, binary search tree 加强版
: stream data是不断产生的, 所以每当一个新数据产生了,就插入RBT, 还要在每个节
: 点中保存子树大小,来方便查找中
: 值
: 你可以设定RBT最多保存100个节点, 然后在新插入节点前, 检查如果根节点的子树大
: 小是100, 说明树满了, 删除最左
: 边和最右边的节点来保持中值不变, 再插入新数据
stream是1,2,3,4, ...,也就是所有自然数按次序进入stream
如果你的RBT最多保存100个节点,则在插入101时,你会删除1和100
可是当stream到199时,这时的median应该是100,可是100已经不在你的RBT里面了
【在 x******3 的大作中提到】
: Red Black Tree, 就是一种balanced search tree, binary search tree 加强版
: stream data是不断产生的, 所以每当一个新数据产生了,就插入RBT, 还要在每个节
: 点中保存子树大小,来方便查找中
: 值
: 你可以设定RBT最多保存100个节点, 然后在新插入节点前, 检查如果根节点的子树大
: 小是100, 说明树满了, 删除最左
: 边和最右边的节点来保持中值不变, 再插入新数据
r*1
20 楼
我衷心的向 zixujoyce 和 xbeast23 大侠致敬。感受到一些灵感在里面。
我以后就在这个版混了。。。。。
我以后就在这个版混了。。。。。
r*o
25 楼
what is the size of the two heaps?
number
that
contains
to
in
【在 z*******e 的大作中提到】
: Use two heaps. The left heap is a max heap, the right heap is a min heap.
: Between the two heap, there is a number indicating the current median number
: . When a new number comes in, we take the following operations (notice that
: the two heap must have the same number of values, actually the left heap
: stores all the numbers smaller than the median, and the right heap contains
: the numbers larger than the median), we should also have a flag variable to
: indicate whether the current median is in the s
number
that
contains
to
in
【在 z*******e 的大作中提到】
: Use two heaps. The left heap is a max heap, the right heap is a min heap.
: Between the two heap, there is a number indicating the current median number
: . When a new number comes in, we take the following operations (notice that
: the two heap must have the same number of values, actually the left heap
: stores all the numbers smaller than the median, and the right heap contains
: the numbers larger than the median), we should also have a flag variable to
: indicate whether the current median is in the s
f*r
26 楼
象这种问题只能做sampling吧,感觉问题的关键是找到一个unbiased sample
B*i
28 楼
想起来了
我老在四年前被一个老印 在一个indian buffeit店里lunch interview的时候就是这个
问题
我老在四年前被一个老印 在一个indian buffeit店里lunch interview的时候就是这个
问题
f*7
29 楼
是取决于sample的方式,看过解答,可惜忘记了.
相关阅读
一个3g模块要加100多?bing的iphone app还真是不错关于*thehutt ID的处理情况。Apple iPad: women's best friend (转载)iPad的一个亮点iTouch vs. Zune苹果的东西做的真不错还是教主厉害大家说说Mac Book到底好在哪里?租这么个地半天得花多少钱?菜鸟问:看avi必须要安Quicktime pro吗?请问国内网银只用IE的问题大家怎么解决的?比较Google, MS, Apple, Yahoo的领域还有一个原因为什么苹果要把有些功能省略掉iPad refurbished已经有了iphone,还要给iPad再买一个data plan?9.7寸屏幕咋边框那么厚实。。。想搞两个iphone回去送人,怎么操作?anyone here has a kindle?