1.将临售版转换为VOL版本 新建.bat文件 @ECHO OFF&PUSHD %~DP0 setlocal EnableDelayedExpansion&color 3e & cd /d "%~dp0" title office2016 retail转换vol版 %1 %2 mshta vbscr ...
分类:
其他好文 时间:
2020-07-16 21:57:35
阅读次数:
120
该库代表Ultralytics对未来对象检测方法的开源研究,并结合了以前的YOLO库https://github.com/ultralytics/yolov3在自定义数据集上训练了数千个模型而得到的最佳实践。**所有代码和模型都在积极的开发中,如有修改或删除,恕不另行通知。**如果使用,风险自负。 ...
分类:
其他好文 时间:
2020-07-15 23:04:53
阅读次数:
695
Description Huffman树在编码中有着广泛的应用。在这里,我们只关心Huffman树的构造过程。 给出一列数{pi}={p0, p1, …, pn-1},用这列数构造Huffman树的过程如下: 1. 找到{pi}中最小的两个数,设为pa和pb,将pa和pb从{pi}中删除掉,然后将它 ...
分类:
其他好文 时间:
2020-07-14 18:24:44
阅读次数:
47
字符串相乘 给定两个以字符串形式表示的非负整数 num1 和 num2,返回 num1 和 num2 的乘积,它们的乘积也表示为字符串形式。 示例 1: 输入: num1 = "2", num2 = "3" 输出: "6" 示例 2: 输入: num1 = "123", num2 = "456" 输 ...
分类:
其他好文 时间:
2020-07-14 16:48:43
阅读次数:
71
关键性数据结构 hmap: map 的 header结构 bmap: map 的 bucket结构 mapextra: map 的 拓展结构 不是每一个map都包含 golang map 是用 hash map实现的,首先,我们先看 hash map是怎么实现的;然后我们再看 golang map ...
分类:
其他好文 时间:
2020-07-13 13:33:53
阅读次数:
54
一、简介: 官网:http://mp.baomidou.com/ 参考教程:http://mp.baomidou.com/guide/ MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。 二、MP集成: ...
分类:
其他好文 时间:
2020-07-11 00:08:25
阅读次数:
74
1. PersistentVolume(PV)简介 1.1 为什么需要Persistent Volume(PV) 1.2 PersistentVolume(PV)和Volume的区别 1.3 PV和PVC更具体的概念和关系 1.3.1 PersistentVolume(PV) 1.3.2 Persi ...
分类:
Web程序 时间:
2020-07-11 00:01:32
阅读次数:
57
1.grid布局实现(一) .father{ display:grid; align-item:center; justify-items:center; } 2.grid布局实现(二) .father{ display:grid; align-item:center; justify-conten ...
分类:
Web程序 时间:
2020-07-10 13:11:05
阅读次数:
90
K3S https://k3s.io/ https://docs.rancher.cn/k3s/ https://rancher.com/docs/k3s/latest/en/ https://github.com/rancher/k3s https://github.com/rancher/k3s ...
分类:
其他好文 时间:
2020-07-10 00:18:17
阅读次数:
106
ThreadPoolExecutor的参数详情以及四种线程池CachedThreadPool、FixedThreadPool、SingleThreadExecutor、ScheduleThreadPool的介绍 ...
分类:
编程语言 时间:
2020-07-09 22:22:40
阅读次数:
60