<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< ...
分类:
其他好文 时间:
2021-01-27 12:50:11
阅读次数:
0
〇、前言 之前单机部署了squid代理服务器,现在实现一下高可用。 还有自定义squid的error页面 准备:两台centos7(1C2GB) ? 三个可用IP,一主一备一虚拟IP(VIP) 一、安装squid(两台) yum install squid -y # 具体配置略 二、安装keepal ...
分类:
其他好文 时间:
2021-01-26 12:39:30
阅读次数:
0
https://www.acwing.com/solution/content/3472/ 单链表 #include<iostream> using namespace std; const int N=1e6+10; // e[N]中存value,ne[N]存下一个结点的下标 int head,e ...
分类:
其他好文 时间:
2021-01-26 12:24:15
阅读次数:
0
public class ArrayQueue<T> extends AbstractList<T>{ //定义必要的属性,容量、数组、头指针、尾指针 private int capacity; private int T[] queue; private int head; private int ...
分类:
其他好文 时间:
2021-01-26 12:17:34
阅读次数:
0
表格美化 --> 标题1 标题1 标题1 标题1 标题1 内容 内容 内容 内容 内容 内容 内容 内容 内容 内容 分页代码 --> Info Header 1 Info Header 2 Info Header 3 操作 Text 1A Text 1B Text 1C Text 2A Text ...
分类:
Web程序 时间:
2021-01-26 12:17:01
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>div和span</title> </head> <!-- div和span div标签 层,块级元素,标签会自动换行。 常用于布局。 常用属性: align div元素中内容的对 ...
分类:
其他好文 时间:
2021-01-26 11:40:38
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>a标签</title> </head> <!-- 超链接a标签 定义超链接,用于从一个页面链接到另一个页面 行内元素,不会换行。 常用属性: href 必须标签(如果未设置该属性, ...
分类:
其他好文 时间:
2021-01-26 11:40:19
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>form表单</title> </head> <!-- 所有标签都有的属性 id 用来标识元素的唯一性 name 用来提交数据时的参数名称 style 设置元素的css行内样式 c ...
分类:
其他好文 时间:
2021-01-25 11:39:18
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>常用标签</title> </head> <!-- 格式化标签 font 行内元素 不会自动换行 设置字体相关的属性 常用属性 color 字体颜色(颜色名,rgb,16进制) s ...
分类:
其他好文 时间:
2021-01-25 11:38:37
阅读次数:
0
CSS Copy-paste the stylesheet <link> into your <head> before all other stylesheets to load our CSS. <link href="https://cdn.jsdelivr.net/npm/bootstrap ...
分类:
其他好文 时间:
2021-01-25 11:24:06
阅读次数:
0