Job:控制Pod完成工作 Begin: kubectl explain job.spec Job基础Yaml apiVersion: batch/v1 kind: Job metadata: name: batch-job namespace: controller-test spec: temp ...
分类:
其他好文 时间:
2020-08-20 19:27:01
阅读次数:
140
c++ 字符串反转的3种方法 1、使用string.h中的strrev函数 #include <iostream> #include <cstring> using namespace std; int main() { char s[] = "hello"; strrev(s); cout<< s ...
分类:
编程语言 时间:
2020-08-18 15:36:13
阅读次数:
66
1.下标:\(a_n\) 输入为 $a_n$ 2.上标:\(A^{-1}\) 输入为 $A^{-1}$ 3.矩阵:$ \begin 1 & 0\ 0 & 1\ \end $ 输入为 \begin{bmatrix} 1 & 0\\ 0 & 1\\ \end{bmatrix} 4.大型矩阵:$ \beg ...
分类:
其他好文 时间:
2020-08-18 13:23:22
阅读次数:
81
awk是非常实用的文本处理工具,我们试图用5个例子了解awk的基本用法 基本用法:awk BEGIN{扫描前执行的操作} '匹配模式{执行的操作}' END{扫描后执行的操作} 其中,BEGIN{扫描前执行的操作}和END{扫描后执行的操作}不是必须的 例子1:netstat -alepn | aw ...
分类:
其他好文 时间:
2020-08-15 22:36:41
阅读次数:
78
如:删除容器中第i个元素。 操作:先将第i个元素与最后个元素互换,再删除最后一个元素。 std::swap(std::begin(pointsetA)+i-1,std::end(pointsetA)-1); //交换数据 pointsetA.pop_back(); //删除最后的那个数据 ...
分类:
其他好文 时间:
2020-08-11 09:28:27
阅读次数:
65
有一个 $X$、$Y$ 轴坐标范围为 $1\sim n$ 的范围的方阵,每个点上有块黄金。一阵风来 $(x,y)$ 上的黄金到了 $(f(x),f(y))$,$f(x)$ 为 $x$ 各位上数字的乘积,如果黄金飘出方阵就没了。求在 $k$ 个格子上采集黄金最多可以采集的黄金数。
数据范围:$1\le... ...
分类:
其他好文 时间:
2020-08-11 09:13:49
阅读次数:
52
Mysql索引优化 准备数据 建立一个测试用表 往表中插入10w条随机数据的存储过程 CREATE DEFINER=`root`@`%` PROCEDURE `insert_tbl`(in max_num int(10)) BEGIN declare i int default 0; set aut ...
分类:
数据库 时间:
2020-08-09 14:25:01
阅读次数:
106
rootview.h #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface RootViewController : UIViewController @end rootview.m #import "RootViewControlle ...
分类:
其他好文 时间:
2020-08-08 21:24:32
阅读次数:
87
点击查看代码块 /* 找字典序最小的欧拉路,也可以做欧拉回路 */ #include <bits/stdc++.h> #define ed end() #define bg begin() #define mp make_pair #define pb push_back #define v(T) ...
分类:
其他好文 时间:
2020-08-07 12:35:13
阅读次数:
76
#!/bin/bash # # # 自动创建 Docker TLS 证书 # # 以下是配置信息 # --[BEGIN] CODE="docker" IP="192.168.31.199" PASSWORD="123456" COUNTRY="CN" STATE="HUNAN" CITY="CHAN ...
分类:
其他好文 时间:
2020-08-05 13:10:53
阅读次数:
81