码迷,mamicode.com
首页 >  
搜索关键字:must begin with    ( 12452个结果
Job:控制Pod完成工作
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++字符串反转
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
Latex使用方法
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
5个例子征服awk
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
题解-SDOI2013 淘金
有一个 $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索引优化
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
UI基础 属性代理传值
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
自动创建 Docker TLS 证书
#!/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
12452条   上一页 1 ... 27 28 29 30 31 ... 1246 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!