Dijkstra算法 (gif来源: "戴克斯特拉算法 维基百科" ) 计算 正权图 上的单源最短路,同时适用于有向图与无向图 ①给源点标记$d[0]=0$,其他$d[i]=INF$ ②循环:每次都从d值最小的结点$x$开始,对于从$x$出发的所有边$(x,y)$,对于未被访问过的结点$y$,更新$ ...
分类:
编程语言 时间:
2020-05-19 20:42:02
阅读次数:
56
HTuple imgWidth, imgHeight; int winRow, winCol, winWidth, winHeight,partWidth, partHeight; try { HOperatorSet.GetImageSize( image,out imgWidth, out im ...
Masking lets you modify a specific bit (or bits) using a bit pattern (called the mask) and a logical bitwise operator (AND, OR, or XOR). By changing t ...
分类:
其他好文 时间:
2020-05-19 12:29:32
阅读次数:
62
video https://youtu.be/MQRv6UASZcA https://www.bilibili.com/video/BV1zi4y147sk/ https://www.ixigua.com/i6825969911781655048/ ...
分类:
其他好文 时间:
2020-05-18 14:30:41
阅读次数:
72
Mongodb正则$regex 正则能帮助我们实现一些复杂的查询,mongodb中实现正也很简单 https://docs.mongodb.com/manual/reference/operator/query/regex/index.html 查询格式 { <field>: { $regex: / ...
分类:
数据库 时间:
2020-05-17 19:20:42
阅读次数:
87
"Least Cost Bracket Sequence" "CodeForces 3D " 题目描述 This is yet another problem on regular bracket sequences. A bracket sequence is called regular, if ...
分类:
其他好文 时间:
2020-05-17 19:09:17
阅读次数:
56
history | awk '{print $1"\t"$2}' | clickhouse-client \ --query="SELECT shell, count() AS c FROM history \ GROUP BY shell ORDER BY c DESC limit 10 " \ ...
分类:
数据库 时间:
2020-05-16 20:49:03
阅读次数:
92
链接: "2018 2019 ICPC Southwestern European Regional Programming Contest (SWERC 2018)" 题意: 一个无向图,图上有三个关键点A,B,C,统计图上点u的个数,满足没有其他点v到A,B,C的最短距离都比u到A,B,C的最短 ...
分类:
其他好文 时间:
2020-05-16 18:59:20
阅读次数:
58
使用const COmplex operator + (const Complex &c ) const {} 重新定义类的+操作 #include<iostream> using namespace std; class Complex{ public: Complex(int r, int i) ...
分类:
编程语言 时间:
2020-05-16 00:47:53
阅读次数:
92
java排序 冒泡排序(相邻比较) 算法思路: 1、比较相邻的元素。如果第一个比第二个大,就交换它们两个; 2、对每一对相邻元素作同样的工作,从开始第一对到结尾的最后一对,这样在最后的元素应该会是最大的数; 3、针对所有的元素重复以上的步骤,除了最后一个; 4、重复步骤1~3,直到排序完成。 pub ...
分类:
编程语言 时间:
2020-05-15 19:51:26
阅读次数:
73