1135 Is It A Red-Black Tree (30分) There is a kind of balanced binary search tree named red-black tree in the data structure. It has the following 5 pr ...
分类:
其他好文 时间:
2020-07-11 19:21:02
阅读次数:
74
摘要:elememt-ui中使用el-scrollbar时监听scroll事件,处理el-tabs滚动到顶部时header部分吸顶效果 前言 网上关于el-scrollbar滚动事件监听的案例比较少,好不容易找到解决方法,记录一下,启发之处在这里,稍有改动 在vue中使用elememt-ui时,如果 ...
分类:
其他好文 时间:
2020-07-11 15:39:36
阅读次数:
237
1、初始化容量 当我们根据key的hash确定其在数组的位置时,如果n为2的幂次方,可以保证数据的均匀插入,如果n不是2的幂次方,可能数组的一些位置永远不会插入数据,浪费数组的空间,加大hash冲突; 一般我们可能会想通过 % 求余来确定位置,只不过性能不如 & 运算。而且当n是2的幂次方时:has ...
分类:
其他好文 时间:
2020-07-11 15:34:24
阅读次数:
75
Passage 11 Everyone has five senses. The five senses are sight, hearing, smell, taste and touch. We use different body parts for different senses. We ...
分类:
其他好文 时间:
2020-07-10 20:51:52
阅读次数:
109
今天学到了一个新的技巧,用鼠标点击 chrome dev tools 的 Elements 中的标签以后 ,使用 $0 就可以获取到鼠标所点击的 DOM 节点 然后总结一下 Dom Scroll 的 api。 常用的就是这几个。 $0.scrollBy(30, 30); $0.scrollTo(0, ...
分类:
其他好文 时间:
2020-07-10 15:42:44
阅读次数:
63
1、vue-virtual-scroll-list https://github.com/tangbc/vue-virtual-scroll-list ...
分类:
其他好文 时间:
2020-07-09 17:59:58
阅读次数:
148
问题背景:python通过grpc调用tfserving报错, 提示:AttributeError: module 'tensorflow_serving.apis.prediction_service_pb2' has no attribute 'beta_create_PredictionSer ...
分类:
编程语言 时间:
2020-07-09 12:12:29
阅读次数:
130
[Style overflow 属性 Style 对象定义和用法overflow 属性设置或返回如何处理呈现在元素框外面的内容。语法设置 overflow 属性:Object.style.overflow="visible|hidden|scroll|auto|inherit"返回 overflow... ...
分类:
Web程序 时间:
2020-07-09 10:48:23
阅读次数:
152
前言基础 游标是属于级行操作,遍历一个表一行一行读,而SQL查询是基于数据集的,在数据量大的时候,使用游标会降低查询速度。这是很明显的。但是有些操作就用游标实现。所以游标又是不或缺少的。我很久都没用游标了,一时我也不记得怎么写,只记得游标操作一般三步。 1.定义一个游标,将查询的数据放到在这游标中 ...
分类:
数据库 时间:
2020-07-08 15:29:39
阅读次数:
54
repartition repartition 有三个重载的函数: 1) def repartition(numPartitions: Int): DataFrame /** * Returns a new [[DataFrame]] that has exactly `numPartitions` ...
分类:
数据库 时间:
2020-07-08 13:17:49
阅读次数:
93