码迷,mamicode.com
首页 >  
搜索关键字:edge    ( 2375个结果
spark图操作
spark graphx图操作 import org.apache.spark.graphx.{Edge, Graph, VertexId} import org.apache.spark.rdd.RDD import org.apache.spark.{SparkConf, SparkContex ...
分类:其他好文   时间:2020-01-31 18:51:08    阅读次数:65
700k把web端程序包装为桌面程序
electron因为自带cef所以体积巨大,还不是因为windows没有chromium的webview嘛,现在有了新edge后,这个项目通过依赖各个平台的webview,并依赖.net core,做到700k可以把web端跑起来像桌面程序似的,代码也非常简单。支持url,静态文件和html字符串。 ...
分类:Web程序   时间:2020-01-31 18:35:23    阅读次数:93
以管理员身份运行 Microsoft Edge 时不支持登录
之前一直用 edge chromium bate版本 一直不能登录 今天试了正式版 还是这样 然后百度一大堆没找到解决方案 设置兼容性为windown7 是可以的 但是 UI显示会有问题 再次打开 又不是兼容模式了(也许可以登录之后再退出兼容模式?) 不过我是这么解决的 ? 1、Windows10系 ...
分类:其他好文   时间:2020-01-31 00:55:42    阅读次数:2129
实时边缘视频流人物检测(一)
零、标题&摘要 1、标题: Real Time Human Objects Tracking for Smart Surveillance at the Edge 应用于边缘智能监控的实时人体目标跟踪 2、摘要: Abstract— Allowing computation to be perfor ...
分类:其他好文   时间:2020-01-30 12:53:05    阅读次数:181
Constructing Roads POJ - 2421 最小生成树板子题
#include<iostream> #include<cstring> #include<algorithm> using namespace std; const int N=110; int p[N]; struct edge{ int a; int b; int w; }e[N*N]; in ...
分类:其他好文   时间:2020-01-29 14:22:30    阅读次数:62
QS Network ZOJ - 1586 板子题
#include<iostream> #include<algorithm> using namespace std; const int N=1e6+10; struct edge{ int a,b; double w; }e[N]; int p[N]; int a[N]; int n; bool ...
分类:Web程序   时间:2020-01-29 14:15:19    阅读次数:66
Building a Space Station POJ - 2031 三维最小生成树,其实就是板子题
#include<iostream> #include<cmath> #include<algorithm> #include<cstdio> using namespace std; const int N=1e5; struct edge{ int a,b; double w; }e[N]; d ...
分类:其他好文   时间:2020-01-29 14:01:16    阅读次数:89
Networking POJ - 1287 最小生成树板子题
#include<iostream> #include<algorithm> using namespace std; const int N=1e5; struct edge{ int a,b,w; }e[N]; bool cmp(edge a,edge b) { return a.w<b.w; ...
分类:Web程序   时间:2020-01-29 12:50:21    阅读次数:89
Jungle Roads POJ - 1251 模板题
#include<iostream> #include<cstring> #include<algorithm> using namespace std; const int N=0x3f3f3f3f; int p[50]; struct edge{ int a,b,w; }e[100]; bool ...
分类:其他好文   时间:2020-01-29 12:11:08    阅读次数:72
Milking Time POJ - 3616 dp 感觉像背包
#include<iostream> #include<algorithm> #include<cstring> #include<cstdio> using namespace std; const int N=1010; struct edge{ int start; int end; int ...
分类:其他好文   时间:2020-01-28 20:59:13    阅读次数:78
2375条   上一页 1 ... 23 24 25 26 27 ... 238 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!