happy holiday to all# PhotoGear - 摄影器材l*d2010-11-24 08:111 楼Given an infinite input of strings, how do you randomly sample 1,000 stringsat any given point?如果是infinite,应该不是所有的string都存了吧?那应该怎么取呢?
b*a2010-11-24 08:112 楼http://picasaweb.google.com/104999131228651012110/A55LowLightTestHandheldMultiFramNR?authkey=Gv1sRgCL_TvcXzz6fLLg#5543296620379959010a55 - low light test - handheld - Multi fram NR是一张才拍的测试. 不知和铁丝和C+的机器比如何? 德芙mm来评评?
l*d2010-11-24 08:115 楼Reservoir Sampling我倒是知道,不过这种infinite string也是一样?怎么存储呢?【在 c********e 的大作中提到】: Reservoir Sampling
b*a2010-11-24 08:116 楼yes, from a55.【在 C***I 的大作中提到】: It is from A55?: It looks good.: But I'm 铁丝. However I like panasonic camera too.
z*82010-11-24 08:117 楼你只需要记住当前选择的1000个string以及处理的string总数【在 l**d 的大作中提到】: Reservoir Sampling我倒是知道,不过这种infinite string也是一样?怎么存储呢?
a*92010-11-24 08:118 楼先把前1000个string放到一个array里,之后对第N个string做如下处理:if (i = random(n)) < 1000 就把这个string放到array[i]里