验证理论 1.OSPF信息类型,每个信息类型的作用,每个信息类型中每个字段存在的价值 第一节——通用报头 实验拓扑: 初始配置: 将接口配置地址,抓包开始后配置上OSPF 1.OSPF通用报头 OSPF的5种报文具有相同的报文头格式,长度为24字节 内容: 字段 长度 含义 Version 1字节 ...
分类:
其他好文 时间:
2021-06-06 19:27:17
阅读次数:
0
# Obtain a transportation network from an osm file. # get osm file 方式1:OpenStreetMap Homepage # .osm.pbf下载地址 方式2:http://download.openstreetmap.fr/extr ...
分类:
Web程序 时间:
2021-06-06 18:59:22
阅读次数:
0
public class test{ public static void main(String[] arg){ //Date转为LocalDateTime DateTimeFormatter sdf1 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm ...
分类:
其他好文 时间:
2021-06-04 18:44:19
阅读次数:
0
最近深度学习两巨头 Bengio 和 LeCun 在 ICLR 2020 上点名 Self-Supervised Learning(SSL,自监督学习) 是 AI 的未来,而其的代表的 Framework 便是 Contrastive Learning(CL,对比学习)。 另一巨头 Hinton 和 ...
分类:
其他好文 时间:
2021-06-02 20:26:20
阅读次数:
0
服务器规划: 修改3个微服务的配置文件: [root@localhost resources]# vi /opt/simple-microservice/order-service/order-service-biz/src/main/resources/application-fat.yml [r ...
分类:
其他好文 时间:
2021-06-02 18:16:48
阅读次数:
0
思路 思路同k倍区间。 前缀积得到每个点的正负。枚举右端点$r$,统计满足$s[r]$和$s[l-1]$同号的左端点$l$的数目,$s[r]$和$s[l-1]$同号则$s[l \sim r]$为正。$s[l \sim r]$为负的区间数量同理。 const int N=2e5+10; int a[N ...
分类:
其他好文 时间:
2021-06-02 12:57:18
阅读次数:
0
Kotlin中是可以将内联函数中的泛型进行实化的。 那么具体该怎么写才能将泛型实化呢?首先,该函数必须是内联函数才行,也就是要用inline 关键字来修饰该函数。其次,在声明泛型的地方必须加上reified关键字来表示该泛型要进行 实化。 inline fun <reified T> getGene ...
分类:
其他好文 时间:
2021-05-24 17:21:37
阅读次数:
0
算法代码 C#代码 using System; namespace Prim { class Program { static void Main(string[] args) { int numberOfVertexes = 9, infinity = int.MaxValue; int[][] ...
分类:
编程语言 时间:
2021-05-24 12:41:56
阅读次数:
0
import java.text.ParseException; import java.text.SimpleDateFormat; import java.time.*; import java.time.format.DateTimeFormatter; import java.util.Ca ...
分类:
编程语言 时间:
2021-05-24 06:45:07
阅读次数:
0
1. # -*- encoding=utf8 -*- __author__ = "1003441" from airtest.core.api import * auto_setup(__file__) # 日志模块 from airtest.report.report import simple_ ...
分类:
其他好文 时间:
2021-05-24 04:56:48
阅读次数:
0