仅供自己学习 题目: You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the foll ...
分类:
其他好文 时间:
2021-02-04 12:10:58
阅读次数:
0
仅供自己学习 题目: Invert a binary tree. Example: Input: 4 / \ 2 7 / \ / \1 3 6 9Output: 4 / \ 7 2 / \ / \9 6 3 1 思路: 这就是直接交换数据就可以了,可以前序遍历,后序遍历,中序遍历的交换 代码: 前序 ...
分类:
其他好文 时间:
2021-02-04 11:44:27
阅读次数:
0
true UTF-8 %d{yyyy-MM-dd HH:mm:ss.SSS} %highlight(%-5level) %magenta([PID:${PID:-}]) %green([%15.15thread]) %cyan(%40.40logger:%-5.5L):%msg%n ${PATH}/ ...
分类:
编程语言 时间:
2021-02-03 11:07:10
阅读次数:
0
[root@Server-qnrsyp system]# wget --no-check-certificate https://dl.grafana.com/oss/release/grafana_7.3.7_amd64.deb --2021-02-02 00:21:25-- https://dl ...
分类:
其他好文 时间:
2021-02-02 11:34:53
阅读次数:
0
主要内容: 软件安装方式 上传与下载工具 常用软件的安装--jdk、tomcat、mysql、redis 项目的部署 Nginx的安装 Nginx的功能 静态网站部署 虚拟主机配置及端口绑定 域名绑定 反向代理与负载均衡 一、Linux软件安装 1、目录结构 ~表示root目录,即/root 软件安 ...
分类:
系统相关 时间:
2021-02-02 11:33:50
阅读次数:
0
问题还原 [root@Oracle19c ~]# echo $DISPLAY192.168.189.246:0.0[root@Oracle19c ~]# xhost +xhost: unable to open display "192.168.189.246:0.0" 问题解决方法 [root@O ...
分类:
其他好文 时间:
2021-02-02 11:04:15
阅读次数:
0
1、下载R安装包 [root@centos7 home]# wget https://mirror.bjtu.edu.cn/cran/src/base/R-3/R-3.6.3.tar.gz --2021-01-31 23:52:23-- https://mirror.bjtu.edu.cn/cran ...
分类:
系统相关 时间:
2021-02-02 10:42:34
阅读次数:
0
在Linux 中如何查看分区的文件系统类型,下面总结几种查看分区文件系统类型的方法。 1: df -T 命令查看 这个是最简单的命令,文件系统类型在Type列输出。只可以查看已经挂载的分区和文件系统类型。如下所示: [root@mylnx008 ~]# df -T /dev/sdb Filesyst ...
分类:
系统相关 时间:
2021-02-01 12:55:37
阅读次数:
0
[root@szcs-data Tengine-install]# cat 1.sh #!/bin/bash echo "number:$#" echo "argume:$@" [root@szcs-data Tengine-install]# ./1.sh te ax number:2 argum ...
分类:
系统相关 时间:
2021-02-01 12:49:26
阅读次数:
0
题目 设一个n个节点的二叉树tree的中序遍历为(1,2,3,…,n),其中数字1,2,3,…,n为节点编号。 每个节点都有一个分数(均为正整数),记第i个节点的分数为$d_i$,tree及它的每个子树都有一个加分,任一棵子树subtree(也包含tree本身)的加分计算方法如下: subtree的 ...
分类:
其他好文 时间:
2021-02-01 12:24:58
阅读次数:
0