码迷,mamicode.com
首页 >  
搜索关键字:operator-    ( 3564个结果
【算法】最短路 - Dijkstra算法
Dijkstra算法 (gif来源: "戴克斯特拉算法 维基百科" ) 计算 正权图 上的单源最短路,同时适用于有向图与无向图 ①给源点标记$d[0]=0$,其他$d[i]=INF$ ②循环:每次都从d值最小的结点$x$开始,对于从$x$出发的所有边$(x,y)$,对于未被访问过的结点$y$,更新$ ...
分类:编程语言   时间:2020-05-19 20:42:02    阅读次数:56
halcon HwindowCtronl 原始比例显示图片
HTuple imgWidth, imgHeight; int winRow, winCol, winWidth, winHeight,partWidth, partHeight; try { HOperatorSet.GetImageSize( image,out imgWidth, out im ...
分类:Windows程序   时间:2020-05-19 18:02:33    阅读次数:124
Bit Masking
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
openshift 4.3 calico + multus
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正则$regex 正则能帮助我们实现一些复杂的查询,mongodb中实现正也很简单 https://docs.mongodb.com/manual/reference/operator/query/regex/index.html 查询格式 { <field>: { $regex: / ...
分类:数据库   时间:2020-05-17 19:20:42    阅读次数:87
CF3D Least Cost Bracket Sequence 贪心
"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
ClickHouse奇技淫巧系列之SQL查文件
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
Travel Guide
链接: "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
C++-类的操作符(+)重写
使用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八大排序
java排序 冒泡排序(相邻比较) 算法思路: 1、比较相邻的元素。如果第一个比第二个大,就交换它们两个; 2、对每一对相邻元素作同样的工作,从开始第一对到结尾的最后一对,这样在最后的元素应该会是最大的数; 3、针对所有的元素重复以上的步骤,除了最后一个; 4、重复步骤1~3,直到排序完成。 pub ...
分类:编程语言   时间:2020-05-15 19:51:26    阅读次数:73
3564条   上一页 1 ... 24 25 26 27 28 ... 357 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!