#登记表模板html

locust性能测试脚本模板

locust性能测试脚本模板#!/usr/bin/envpython#-*-coding:utf-8-*-importtimefromlocustimportHttpLocust,TaskSet,task,seq_taskclassBlogDemo(TaskSet):defget_parameters(self):#定...

HTML格式化标签

除了div、p、h1~h6、a、span这几个极常用的标签外,HTML还有一些不常见的标签(10个,5对:加粗、斜体、大小、上下标、特殊),默认效果如下:当然,我们习惯用css编写效果来替代这些效果!...
代码星球 ·2020-12-29

html上下结构(上部固定高度,下部平铺)

html页面上下结构:上部固定,下部平铺1<divid="page_header"></div>2<divid="page_content"></div>样式:1#page_header{width:100%;height:50px;position:fixed;z-in...

Beauty Contest (凸包+旋转卡壳模板题)

题意:求凸包上最大点对的距离AC_Code:1#include<iostream>2#include<cstdio>3#include<cmath>4#include<string>5#include<algorithm>6#include<cstrin...

spfa模板

1//spfa在正权边题目容易被卡,所以正权边的情况下还是用dijkstra吧2//spfa比dijkstra的优点是可以判负环,处理负权边3//spfa的时间复杂度为(O(|V||E|))4//spfa是求单元最短路5//spfa在最小费用最大流中常用67#include<cstdio>8#include...
代码星球 ·2020-12-28

主席树模板之历史版本

    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...

uni-app如何解析html标签

参考网上资料uni-app如何完美解析富文本内容核心内容如下:/*graceUIrich-text加强工具link:graceui.hcoder.netauthor:5213606@qq.com深海*///正则变量vargraceRichTextReg;//批量替换的样式[根据项目需求自行设置]varGRT=[//di...

数据结构实验之串三:KMP应用(KMP模板)

数据结构实验之串三:KMP应用(KMP模板)   AC_Code:1#include<iostream>2#include<cstdio>3#include<cstring>4#include<cmath>5#include<map&g...

主席树模板之区间问题

    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...

Graham算法模板

Graham算法模板1#include<iostream>2#include<cstdio>3#include<cstring>4#include<cmath>5#include<algorithm>6usingnamespacestd;7typedeflon...
代码星球 ·2020-12-27

不要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

最小生成树模板

最小生成树模板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...
首页上一页...3031323334...下一页尾页