索引 索引的本质 索引的本质:索引是数据结构。索引是在存储引擎层实现的,而不是在服务器层实现的,所以不同存储引擎具有不同的索引类型和实现。 B-Tree和B+Tree B-Tree B+Tree 每个节点的指针上限为2d而不是2d+1。 内节点不存储data,只存储key;叶子节点不存储指针。 为什 ...
分类:
数据库 时间:
2021-03-30 12:59:32
阅读次数:
0
# Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None # 递归 # 时间复杂度:O(n ...
分类:
其他好文 时间:
2021-03-29 12:51:26
阅读次数:
0
以创建sqli-labs靶场为例子记录一下docker的常用指令 1. 镜像 1.2 查找镜像 docker search sqli-labs 1.3 获取镜像 docker pull sqli-labs 1.4 登录/退出第三方仓库 docker login/logout [ 仓库地址 ] 1.5 ...
分类:
数据库 时间:
2021-03-29 12:47:16
阅读次数:
0
输入一棵二叉树和一个整数,打印出二叉树中节点值的和为输入整数的所有路径。从树的根节点开始往下一直到叶节点所经过的节点形成一条路径; /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode * ...
分类:
其他好文 时间:
2021-03-29 12:41:37
阅读次数:
0
SCI更新了一个新的文献数据版本,网址是 https://www.webofscience.com/wos/alldb/basic-search 可以直接查询导出,不过 没有引文数据 和通讯作者等等信息。如果需要详细信息,会提示到SCI的Web of Science链接获取。 可能是SCI要把这个产 ...
分类:
其他好文 时间:
2021-03-29 11:50:31
阅读次数:
0
查找docker镜像 我们可以从 Docker Hub 网站来搜索镜像,Docker Hub 网址为: https://hub.docker.com/ 我们也可以使用 docker search 命令来搜索镜像。比如我们需要一个 mysql 的镜像。我们可以通过 docker search 命令搜索 ...
分类:
其他好文 时间:
2021-03-29 11:39:54
阅读次数:
0
文本处理三剑客(grep,sed,awk) 剑客1-grep 文本过滤工具 grep介绍 grep (Global search REgular expression and Print out the line/全面搜索正则表达式并把行打印出来)、 grep一种强大的文本搜索工具,它能使用正则表达 ...
分类:
其他好文 时间:
2021-03-26 15:18:40
阅读次数:
0
Description:Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to t ...
分类:
其他好文 时间:
2021-03-18 14:37:13
阅读次数:
0
/* 实现一个线程安全的队列 */ template <class T> class SafeQueue { public: SafeQueue(void):q(),m(),c() {} ~SafeQueue(void) {} // Add an element to the queue. void ...
分类:
编程语言 时间:
2021-03-18 14:12:09
阅读次数:
0
1.帮助命令 docker version 显示版本信息 docker info 显示系统信息 docker help 显示命令信息 2.镜像命令 docker images 列出镜像信息 docker search 镜像的名字 在docker hub 上面搜索镜像 docker pull 镜像名字 ...
分类:
其他好文 时间:
2021-03-18 14:09:59
阅读次数:
0