码迷,mamicode.com
首页 >  
搜索关键字:root motion    ( 51587个结果
Git配置远程仓库(密匙链接)
#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
LeetCode-113不同路径II
问题 给你二叉树的根节点 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
PAT 2020年秋季 7-3 Left-View of Binary Tree (25 分)
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
【剑指Offer-27】二叉树的镜像
问题 请完成一个函数,输入一个二叉树,该函数输出它的镜像。 示例 解答1:递归 class Solution { public: TreeNode* mirrorTree(TreeNode* root) { if (!root) return nullptr; // 前序操作 swap(root-> ...
分类:其他好文   时间:2021-03-11 17:54:57    阅读次数:0
快速生成一串数字{1..10}的几种方法 20210310
[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
podman
配置加速器(最新版的配置方法) [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安装mysql服务
拉取镜像 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
系统的目录结构、路径的定位
系统的目录结构 Windows D:\Linux脱产10期视频\基础阶段 反斜线 Linux 所有的文件或者目录的起点或者顶点都是以根开始的 / 斜线 Linux的目录结构就像是一个倒挂的树形结构 必知必会的目录及文件 [root@qls ~]# ls -1 / 软连接文件 /bin #存放系统命令 ...
分类:其他好文   时间:2021-03-10 13:11:37    阅读次数:0
podmen
安装podmen [root@localhostl ~]# yum -y remove docker-ce [root@localhostl ~]# yum -y install podman [root@localhostl ~]# cd /etc/containers/ [root@localh ...
分类:其他好文   时间:2021-03-10 13:05:54    阅读次数:0
linux系列之-—01 安装linux环境
1. Vmware虚拟机安装 2. Centos7安装 3. 虚拟机网卡设置 //重启 1、reboot 2、shutdown -r now 立刻重启(root用户使用) //更改/etc/sysconfig/network-scripts/路径下的 ifcfg文件、 cd /etc/sysconf ...
分类:系统相关   时间:2021-03-10 12:58:11    阅读次数:0
51587条   上一页 1 ... 36 37 38 39 40 ... 5159 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!