51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#登记表模板html
locust性能测试脚本模板
locust性能测试脚本模板#!/usr/bin/envpython#-*-coding:utf-8-*-importtimefromlocustimportHttpLocust,TaskSet,task,seq_taskclassBlogDemo(TaskSet):defget_parameters(self):#定...
代码星球
·
2020-12-29
locust
性能
测试
脚本
模板
HTML格式化标签
除了div、p、h1~h6、a、span这几个极常用的标签外,HTML还有一些不常见的标签(10个,5对:加粗、斜体、大小、上下标、特殊),默认效果如下:当然,我们习惯用css编写效果来替代这些效果!...
代码星球
·
2020-12-29
HTML
格式化
标签
html上下结构(上部固定高度,下部平铺)
html页面上下结构:上部固定,下部平铺1<divid="page_header"></div>2<divid="page_content"></div>样式:1#page_header{width:100%;height:50px;position:fixed;z-in...
代码星球
·
2020-12-29
html
上下
结构
上部
固定
Beauty Contest (凸包+旋转卡壳模板题)
题意:求凸包上最大点对的距离AC_Code:1#include<iostream>2#include<cstdio>3#include<cmath>4#include<string>5#include<algorithm>6#include<cstrin...
代码星球
·
2020-12-28
Beauty
Contest
凸包
旋转
卡壳
spfa模板
1//spfa在正权边题目容易被卡,所以正权边的情况下还是用dijkstra吧2//spfa比dijkstra的优点是可以判负环,处理负权边3//spfa的时间复杂度为(O(|V||E|))4//spfa是求单元最短路5//spfa在最小费用最大流中常用67#include<cstdio>8#include...
代码星球
·
2020-12-28
spfa
模板
主席树模板之历史版本
AC_Code:1#include<bits/stdc++.h>2usingnamespacestd;3typedeflonglongll;4constintmaxn=1e6+10;5constintmod=1e9+9;67structTree{8intl,r...
代码星球
·
2020-12-28
主席
模板
历史
版本
杨辉三角求组合数模板
1#include<iostream>2#include<cstdio>3#include<algorithm>4#include<cstring>5#include<string>6usingnamespacestd;7typedeflonglongll;8...
代码星球
·
2020-12-28
杨辉
三角
求组
合数
模板
uni-app如何解析html标签
参考网上资料uni-app如何完美解析富文本内容核心内容如下:/*graceUIrich-text加强工具link:graceui.hcoder.netauthor:5213606@qq.com深海*///正则变量vargraceRichTextReg;//批量替换的样式[根据项目需求自行设置]varGRT=[//di...
代码星球
·
2020-12-27
uni-app
如何
解析
html
标签
数据结构实验之串三:KMP应用(KMP模板)
数据结构实验之串三:KMP应用(KMP模板) AC_Code:1#include<iostream>2#include<cstdio>3#include<cstring>4#include<cmath>5#include<map&g...
代码星球
·
2020-12-27
KMP
数据结构
实验
之串
应用
主席树模板之区间问题
AC_Code1#include<iostream>2#include<cstdio>3#include<vector>4#include<cstring>5#include<algorithm>6usingna...
代码星球
·
2020-12-27
主席
模板
区间
问题
简易版第k大(权值线段树+动态开点模板)
简易版第k大(权值线段树) 比较简单的权值线段树模板题,主要用来学一下动态开点一般权值线段树模板AC_Code1include<bits/stdc++.h>2usingnamespacestd;3typedeflonglongll;4constint...
代码星球
·
2020-12-27
简易
权值
线段
动态
开点
Graham算法模板
Graham算法模板1#include<iostream>2#include<cstdio>3#include<cstring>4#include<cmath>5#include<algorithm>6usingnamespacestd;7typedeflon...
代码星球
·
2020-12-27
Graham
算法
模板
不要62(数位dp模板题)
AC_Code:1#include<iostream>2#include<cstdio>3#include<cstring>4#include<string>5#include<cmath>6#include<queue>7...
代码星球
·
2020-12-27
不要
数位
dp
模板
最小生成树模板
最小生成树模板prim 1#include<bits/stdc++.h>2usingnamespacestd;3typedeflonglongll;4constintmaxn=1e3+20;5constintinf=0x3f3f3f3f;6intG[maxn][maxn];7boolvis[max...
代码星球
·
2020-12-27
最小
生成
模板
数论之扩展欧几里德相关模板
拓展欧几里得公式: typedeflonglongLL;LLexgcd(LLa,LLb,LL&x,LL&y){if(a==0&&b==0)return-1;if(b==0){x=1;y=0;returna;}LLd=exgcd(b,a%b,y,x);y-=a/b*x;retur...
代码星球
·
2020-12-27
论之
扩展
欧几里德
相关
模板
首页
上一页
...
30
31
32
33
34
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他