Docker常用命令介绍 1、docker常用命令 命令 作用 docker search 查询镜像 docker pull 从网上拉取镜像 docker create 创建容器 docker ps 查看容器进程 docker start 启动容器进程 docker stop 终止容器进程 dock ...
分类:
其他好文 时间:
2020-07-12 20:38:58
阅读次数:
65
1.下载安装 MySQL最新下载地址:https://dev.mysql.com/downloads/mysql/ 选择的是Linux 64位通用的二级制版本,这样不在需要进行编译安装,系统安装依赖库后就可以直接使用。 2. 安装依赖库 yum install numactl yum install ...
分类:
数据库 时间:
2020-07-12 14:58:44
阅读次数:
105
1014 Waiting in Line (30分) Suppose a bank has N windows open for service. There is a yellow line in front of the windows which devides the waiting are ...
分类:
其他好文 时间:
2020-07-11 20:59:55
阅读次数:
116
Vue数组的变异方法 Vue 包含一组观察数组的变异方法,所以它们也将会触发视图更新。这些方法如下: push() pop() shift() unshift() splice() sort() reverse() push():往数组最后面添加一个元素,成功返回当前数组的长度 pop():删除数组 ...
分类:
编程语言 时间:
2020-07-10 19:17:13
阅读次数:
72
在数组中的两个数字,如果前面一个数字大于后面的数字,则这两个数字组成一个逆序对。输入一个数组,求出这个数组中的逆序对的总数。 算法思路: 将数组分成子数组,使左右数组均有序、如果左数组中一元素大于右数组某一元素,说明左数组其余元素都大于右数组的当前元素,此时产生左数组剩下元素数量的逆序对。 当左数组 ...
分类:
编程语言 时间:
2020-07-10 16:51:44
阅读次数:
70
Given a positive integer a, find the smallest positive integer b whose multiplication of each digit equals to a. If there is no answer or the answer i ...
分类:
其他好文 时间:
2020-07-10 09:57:57
阅读次数:
79
Announcements - This repository provides references to recent advances in deep-learning-based inverse problems (DLB IP), and will be updated once ever ...
分类:
其他好文 时间:
2020-07-09 01:15:07
阅读次数:
101
需求: 有某个文本文件,我们想读取其中某范围内容如100-300行之间的内容,python中文本文件是可迭代对象,我们是否可以使用类似列表切片的方式得到一个100-300行文件内容的生成器? f = open('/var/log/dmesg') f[100:300] # 可以么? 思路: 1、f = ...
分类:
其他好文 时间:
2020-07-08 23:14:53
阅读次数:
73
Java 大根堆,维护k个最小的元素,时间复杂度O(KlogK)。 import java.util.*; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); ...
分类:
其他好文 时间:
2020-07-07 23:40:17
阅读次数:
106
Reverse Words in a String Given an input string, reverse the string word by word. Example 1: Input: "the sky is blue" Output: "blue is sky the" Exampl ...
分类:
其他好文 时间:
2020-07-07 15:09:44
阅读次数:
43