# 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
1.创建 CREATE TABLE `qrtz_calendars` ( `SCHED_NAME` varchar(120) NOT NULL, `CALENDAR_NAME` varchar(120) NOT NULL, `CALENDAR` blob NOT NULL, PRIMARY KEY ...
分类:
其他好文 时间:
2021-03-29 11:45:30
阅读次数:
0
查找docker镜像 我们可以从 Docker Hub 网站来搜索镜像,Docker Hub 网址为: https://hub.docker.com/ 我们也可以使用 docker search 命令来搜索镜像。比如我们需要一个 mysql 的镜像。我们可以通过 docker search 命令搜索 ...
分类:
其他好文 时间:
2021-03-29 11:39:54
阅读次数:
0
环境搭建 题目环境:https://github.com/crumbledwall/CTFChallenges/tree/main/D3CTF2021/8-bit_pub 需要更改下邮件配置 接着docker启动即可 题目复现 访问题目,注册登陆后发现存在着admin的功能并且访问不了,目的很明确, ...
分类:
其他好文 时间:
2021-03-29 11:36:14
阅读次数:
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
题目链接:http://poj.org/problem?id=2255 递归经典习题。具体见代码: #include <iostream> #include <cstring> using namespace std; char a[111], b[111]; void dfs(int L1, in ...
分类:
其他好文 时间:
2021-03-18 14:30:29
阅读次数:
0