一、使用Dockerfile创建镜像 Dockerfile文件命令介绍:
FORM 指定基础镜像为该镜像的最后修改版本
FROM < img:tag >指定基础镜像为该镜像的⼀个tag版本
MAINTAINER 指定镜像创建者,企业内部不⽤指定,对外发布也可以不指定
RUN 运⾏…
107. 寻找存在的路径
只需要判断是否联通,不需要知道具体路径或者路径数量,可以使用并查集。
// project1.cpp : This file contains the main function. Program execution begins and ends there.
//#include <iostream>
#include <vector&…