# coding=utf-8import osn = 0for root, dir, files in os.walk('.'): for name in files: if ("final" not in name): n+=1 print(n,name) os.remove(os.path.jo ...
分类:
其他好文 时间:
2021-03-15 11:04:56
阅读次数:
0
236. 二叉树的最近公共祖先 题目描述 相似题目:https://www.cnblogs.com/GarrettWale/p/14406641.html 题解分析 此题是利用二叉树的后序遍历来求解最近公共祖先。 递归的出口是遍历到叶子结点或者当前结点(root)等于待搜索的结点(p或者q),此时需 ...
分类:
其他好文 时间:
2021-03-15 10:51:02
阅读次数:
0
Linux系统安装python3.8与卸载教程 一、安装python解释器 1.获取系统版本信息 首先,查看Linux系统版本信息: [root@oldboy ~] # cat /proc/version Linux version 4.18.0-240.1.1.el8_3.x86_64 (mock ...
分类:
编程语言 时间:
2021-03-15 10:43:37
阅读次数:
0
#Git配置远程仓库(密匙链接) 主机名 IP 备注 git01 192.168.200.31 git测试客户端一 git02 192.168.200.32 git测试客户端二 1.建立远程仓库 首先在浏览器中输入网址https://github.com #服务器创建密匙 [root@git01 ~ ...
分类:
其他好文 时间:
2021-03-15 10:34:31
阅读次数:
0
问题 给你二叉树的根节点 root 和一个整数目标和 targetSum ,找出所有 从根节点到叶子节点 路径总和等于给定目标和的路径。 叶子节点 是指没有子节点的节点。 示例 1: 输入:root = [5,4,8,11,null,13,4,7,2,null,null,5,1], targetSu ...
分类:
其他好文 时间:
2021-03-12 13:01:16
阅读次数:
0
The left-view of a binary tree is a list of nodes obtained by looking at the tree from left hand side and from top down. For example, given a tree sho ...
分类:
其他好文 时间:
2021-03-11 18:26:16
阅读次数:
0
问题 请完成一个函数,输入一个二叉树,该函数输出它的镜像。 示例 解答1:递归 class Solution { public: TreeNode* mirrorTree(TreeNode* root) { if (!root) return nullptr; // 前序操作 swap(root-> ...
分类:
其他好文 时间:
2021-03-11 17:54:57
阅读次数:
0
[20:30:30 root@CentOS8 ~]#ls anaconda-ks.cfg [20:30:31 root@CentOS8 ~]#echo {1..10} > a.txt [20:30:41 root@CentOS8 ~]#cat a.txt 1 2 3 4 5 6 7 8 9 10 [ ...
分类:
其他好文 时间:
2021-03-11 16:31:52
阅读次数:
0
配置加速器(最新版的配置方法) [root@ming2 containers]# vim registries.conf [root@ming2 containers]# cat registries.conf unqualified-search-registries = ["docker.io" ...
分类:
其他好文 时间:
2021-03-11 14:17:03
阅读次数:
0
拉取镜像 docker pull mysql:5.7.3 运行镜像 docker run -e MYSQL_ROOT_PASSWORD=root -d mysql:5.7.32 # -e MYSQL_ROOT_PASSWORD=root意思是给root用户设置密码为root 启动一个mysql服务, ...
分类:
数据库 时间:
2021-03-10 13:25:55
阅读次数:
0