Given a root node reference of a BST and a key, delete the node with the given key in the BST. Return the root node reference (possibly updated) of th ...
分类:
其他好文 时间:
2020-09-15 21:24:11
阅读次数:
42
概述 std::bind函数定义在头文件functional中,是一个函数模板,它就像一个函数适配器,接受一个可调用对象(callable object),生成一个新的可调用对象来“适应”原对象的参数列表。一般而言,我们用它可以把一个原本接收N个参数的函数fn,通过绑定一些参数,返回一个接收M个(M ...
分类:
编程语言 时间:
2020-09-10 22:32:59
阅读次数:
53
#include "stdio.h" #include "stdint.h" #include "windows.h" #include "ws2tcpip.h" void main(void) { struct sockaddr_in sa; char str[INET_ADDRSTRLEN]; ...
分类:
Web程序 时间:
2020-09-09 19:04:36
阅读次数:
51
公式原理 对于随机变量$X$,\(Y\),协方差$COV(X,Y)=E(X-\bar)(Y-\bar)=E(XY)-EXEY$ 假设选取n个样本即,对于总体$X$的样本即为$X_1=[x_1,x_2,x_3,...]\(,均值记为\)\bar=\frac{1}\sum_i$,$Y$同上 样本方差计算 ...
分类:
其他好文 时间:
2020-09-08 20:42:48
阅读次数:
82
Reference [1] https://zhuanlan.zhihu.com/p/111682902 一、读写分离和防止sql注入的必要性(foreword) 1、 读写分离: 一句话定义:读写分离,基本的原理是让主数据库处理事务性增、改、删操作(INSERT、UPDATE、DELETE),而从 ...
分类:
数据库 时间:
2020-09-04 17:21:49
阅读次数:
50
VS编译问题:无法将文件“.\bin\Debug \*dll”复制到“bin\*dll”。对路径“bin \*dll”的访问被拒绝。Your project does not reference ".NETFramework,Version=v4.5.2" framework. Add a refe... ...
分类:
Web程序 时间:
2020-09-03 17:07:34
阅读次数:
102
1官方文档:https://docs.spring.io/spring-boot/docs/2.1.0.BUILD-SNAPSHOT/reference/htmlsingle/#using-boot-dectools 点击Developer Tools,复制Maven的依赖包到pom.xml中 2r ...
分类:
编程语言 时间:
2020-08-20 18:45:36
阅读次数:
71
服务器信息类型服务器IP地址备注Ansible(2台)172.24.78.21/22K8S集群部署服务器,可以和在一起,需要配置在负载均衡上实现反向代理,dashboard的端口为8443K8SMaster(2台)172.24.78.21/22K8s控制端,通过一个VIP做主备高可用Harbor(2台)172.24.78.23/24高可用镜像服务器Etcd(最少3台)172.24.78.25/26
分类:
其他好文 时间:
2020-08-20 18:13:33
阅读次数:
68
帮助命令 docker version # 显示docker的版本信息 docker info # 显示docker的系统信息,包括镜像和容器的数量 docker 命令 --help # 帮助命令 帮助文档的地址:https://docs.docker.com/engine/reference/ru ...
分类:
其他好文 时间:
2020-08-18 14:08:01
阅读次数:
91