码迷,mamicode.com
首页 >  
搜索关键字:rep    ( 1080个结果
帮助系统
1、help 格式:help +函数(类)名 2、helpwin\helpdesk 功能:调用联机帮助窗口 3、lookfor 特点:当不知道具体函数名时,可采用 lookfor+关键字 搜索相关函数 4、Tab 格式:命令前几个字母+Tab键 eg: 输入rep,然后按下Tab键 5、doc 格式 ...
分类:其他好文   时间:2020-03-11 10:56:37    阅读次数:67
各种平衡树板子
Splay 1 #include <cstdio> 2 #include <iostream> 3 using namespace std; 4 const int maxn=1e5+5,inf=0x3f3f3f3f; 5 int siz[maxn],fa[maxn],ch[maxn][2],rep ...
分类:其他好文   时间:2020-03-05 21:00:30    阅读次数:100
拓扑排序
确定比赛名次 HDU - 1285 板题:多组输入,没初始化 #include<bits/stdc++.h> using namespace std; #define rep(i,j,k) for(int i=(int)j;i<=(int)k;i++) #define per(i,j,k) for( ...
分类:编程语言   时间:2020-03-02 14:47:24    阅读次数:82
yum install -y --enablerepo
echo -e "[NOT-CERTIFIED]\nname=NOT-CERTIFIED\nbaseurl=http://xxx/openopen/not-cert/rhel7-x86_64/latest/RPMS.all\nenabled=0\ngpgcheck=0" > /etc/yum.rep ...
分类:其他好文   时间:2020-03-02 12:57:44    阅读次数:124
css之background与第15周css补充内容叠用
1、background (1)background-image,添加背景图片,如果没有其他修饰,图片会在水平、竖直方向根据高度的调整不停叠加 <div style="background-image:url('2.jpg');height:51px"></div (2)background-rep ...
分类:Web程序   时间:2020-02-28 20:43:53    阅读次数:90
python递归删除目录本身以及目录下文件
import os def local_rm(dirpath): if os.path.exists(dirpath): files = os.listdir(dirpath) for file in files: filepath = os.path.join(dirpath, file).rep ...
分类:编程语言   时间:2020-02-26 17:02:13    阅读次数:82
jenkins中遇到的一些坑
上篇文章罗列了jenkins持续集成的步骤,其中踩到了不少坑,在本篇里记录下,希望能给大家一些解决问题的思路。 1.构建时,从github拉取代码失败: 报错部分代码如下: ERROR: Timeout after 10 minutes ERROR: Error cloning remote rep ...
分类:其他好文   时间:2020-02-26 10:23:46    阅读次数:290
python学习记录(持续更新)--最最最基础的一部分(变量、字符串、运算符)
几个常用的函数 print 打印 print('*' * 10) => 打印出10个* input 获取输入 name = input('What is your name?') int float bool str 类型转换 num=int('12345') len upper lower rep ...
分类:编程语言   时间:2020-02-25 17:49:56    阅读次数:74
「CF1313C Skyscrapers」
题目大意 给出一个长度为 $N$ 的序列 $a$ 需要构造出一个长度为 $N$ 的序列 $h$ 使得 $\forall i \in [1,N]$,$\nexists \forall j \in [1,i),k \in (i,N],h_j h_i define REP(i,first,last) fo ...
分类:其他好文   时间:2020-02-24 09:52:42    阅读次数:39
SQL-inject
一、数字型注入(POST) 判断传参方式: 从以上图可以看到当我们点击查询时,url是没有变化的,由此判断是POST传参。 在Firefox设置好代理,同样在burpsuite中也设置好,使用burpsuite抓包。 开启拦截数据包 点击查询,拦截到数据包 BurpSuite 中拦截的包发到 Rep ...
分类:数据库   时间:2020-02-23 18:27:31    阅读次数:103
1080条   上一页 1 ... 5 6 7 8 9 ... 108 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!