题目大意 你每次按照概率得到给定卡片中的一张或什么都不得到 求得到所有卡片的步数期望 $n\leq20$ 解题思路 最值反演 $min(S)$代表得到 至少一张 卡片的期望步数 $max(S)$代表得到 所有 卡片的期望步数 容易得到$min(S)=\frac{1}{\sum_{x \in S}{P ...
分类:
其他好文 时间:
2018-09-02 16:07:26
阅读次数:
144
本文来自网易云社区 1 垃圾回收中的重要概念 1.1 定义 In computer science, garbage collection (GC) is a form of automatic memory management. The garbage collector, or just co ...
分类:
其他好文 时间:
2018-08-28 20:30:10
阅读次数:
188
本文来自网易云社区 1 垃圾回收中的重要概念 1.1 定义 In computer science, garbage collection (GC) is a form of automatic memory management. The garbage collector, or just co ...
分类:
其他好文 时间:
2018-08-28 20:29:38
阅读次数:
224
http://www.diva-portal.se/smash/get/diva2:754515/FULLTEXT01.pdf https://is.muni.cz/th/ifz8g/GarbageCollection.pdf?so=nx https://www.researchgate.net/p ...
分类:
其他好文 时间:
2018-08-27 01:03:43
阅读次数:
200
Collector介绍 Java8的stream api能很方便我们对数据进行统计分类等工作,函数式编程的风格让我们方便并且直观地编写统计代码。 例如: stream里有一个collect(Collector c)方法,这个方法里面接收一个Collector的实例。这里我们要弄清楚Collector ...
分类:
编程语言 时间:
2018-08-25 18:44:40
阅读次数:
733
GC算法 JVM提供了4中不同的算法执行GC GC算法 JVM提供了4中不同的算法执行GC The serial garbage collector 串行垃圾收集器是四个中最简单的。 这个是默认收集器 如果应用程序运行在客户端类机器(Windows上的32位JVM或单处理器机)。 串行收集器使用单个 ...
分类:
编程语言 时间:
2018-08-23 22:14:24
阅读次数:
271
相关streamsets 文章(不按顺序) StreamSets 设计Edge pipeline StreamSets Data Collector Edge 说明 streamsets Executors 说明 streamsets geoip 使用 streamsets stream selec ...
分类:
其他好文 时间:
2018-08-22 11:03:10
阅读次数:
252
edge pipeline 运行在edge 执行模式,我们可以使用 data collector UI 进行edge pipeline 设计, 设计完成之后,你可以部署对应的pipeline到edge 设备 可以设计的edge pipeline edge 发送pipeline edge 发送pipe ...
分类:
其他好文 时间:
2018-08-22 10:25:22
阅读次数:
552
docker 安装 docker run --restart on-failure -p 18630:18630 -d --name streamsets-dc streamsets/datacollector 简单demo 登陆 账户 admin admin 账户 admin admin 登陆完成 ...
分类:
其他好文 时间:
2018-08-19 10:57:57
阅读次数:
1099
List<String> menuPathlist = new ArrayList<String>(); List<String> menuIds = menuPathlist.stream().map(line -> line.split("/")).flatMap(Arrays::stream) ...
分类:
编程语言 时间:
2018-08-15 14:55:37
阅读次数:
176