IDEA激活补丁 IDEA激活补丁因为使用的人一多就会出现问题,所以可以使用补丁来一直充重置30天的免费使用时间。 补丁地址如下:https://gitee.com/Aer2/tools-collection/tree/master/ 找到压缩包文件然后下载。 使用方法如下 1.将压缩包拖入IDEA ...
分类:
其他好文 时间:
2021-04-21 12:13:36
阅读次数:
0
树(下) 1.平衡二叉树 平衡因子:左子树和右子树的高度差; AVL树仍是二叉查找树,对任意结点其平衡因子绝对值不超过1 1.1 建树 class ANode { int value; ANode left; ANode right; int height;? public ANode(int va ...
分类:
其他好文 时间:
2021-04-20 15:38:51
阅读次数:
0
vue-devtools 安装包下载地址:https://github.com/vuejs/vue-devtools/tree/v5.1.1 注意:这里的地址使用分支v5.1.1而不是https://github.com/vuejs/vue-devtools.git,原因是在npm run buil ...
分类:
其他好文 时间:
2021-04-20 14:56:45
阅读次数:
0
每隔 0.5 秒输出当前 .git 目录的文件 watch -n .5 "tree .git" 需要安装 watch 和 tree 命令, brew install watch brew install tree ...
分类:
系统相关 时间:
2021-04-19 15:36:48
阅读次数:
0
MQ是消息通信的模型;实现MQ的大致有两种主流方式:AMQP、JMS。 1.2.1. AMQP AMQP是一种协议,更准确的说是一种binary wire-level protocol(链接协议)。这是其和JMS的本质差别,AMQP不从API层进行限定,而是直接定义网络交换的数据格式。 1.2.2. ...
分类:
其他好文 时间:
2021-04-19 15:33:16
阅读次数:
0
mac 上build go 如果想要在centos上面执行 必须使用下面的方式 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o hello hello.go 不然会报错 :cannot execute binary file ...
分类:
其他好文 时间:
2021-04-19 14:58:20
阅读次数:
0
翻转一棵二叉树。 示例: 输入: 4 / \ 2 7 / \ / \1 3 6 9输出: 4 / \ 7 2 / \ / \9 6 3 1 来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/invert-binary-tree著作权归领扣网络所有。 ...
分类:
其他好文 时间:
2021-04-19 14:42:03
阅读次数:
0
前言 关于spring boot同时支持http和https访问,在spring boot官网73.9已经有说明文档了,同样在github上也有官网的例子。 在这里,我向大家讲述一下,我是怎么实现的。 方式一 一、相关配置 server: port: 4000 https: port: 8443 s ...
分类:
编程语言 时间:
2021-04-16 12:21:07
阅读次数:
0
SQL Server 数据类型Oracle 数据类型 bigint NUMBER(19,0) binary(1-2000) RAW(1-2000) binary(2001-8000) BLOB bit NUMBER(1) char(1-2000) CHAR(1-2000) char(2001-400 ...
分类:
数据库 时间:
2021-04-16 11:43:58
阅读次数:
0
给定一个二叉树的根节点 root ,返回它的 中序 遍历。 示例 1: 输入:root = [1,null,2,3] 输出:[1,3,2] class Solution: def inorderTraversal(self, root: TreeNode) -> List[int]: def in_ ...
分类:
其他好文 时间:
2021-04-15 12:16:15
阅读次数:
0